about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-devhelp
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-10-06 14:13:27 +0900
committernatsukium <tomoya.otabi@gmail.com>2023-10-26 23:05:14 +0900
commit4d88a4d25f8962d6b189b34845fe2b27ad5f35e8 (patch)
tree739c2a7829c85f866ce496c9efa09a962068ddc0 /pkgs/development/python-modules/sphinxcontrib-devhelp
parent90d64bab00da86eecbc6852d386b28c7a03e729a (diff)
python311Packages.sphinxcontrib-devhelp: 1.0.2 -> 1.0.5
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-devhelp')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix
index 946e7eeabd472..b254d4b64327b 100644
--- a/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix
+++ b/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix
@@ -1,17 +1,27 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, pythonOlder
+, flit-core
 }:
 
 buildPythonPackage rec {
   pname = "sphinxcontrib-devhelp";
-  version = "1.0.2";
+  version = "1.0.5";
+  pyproject = true;
+
+  disabled = pythonOlder "3.9";
 
   src = fetchPypi {
-    inherit pname version;
-    sha256 = "ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4";
+    pname = "sphinxcontrib_devhelp";
+    inherit version;
+    hash = "sha256-Y7QeDTggfKQOu+q89NjlH3bAPnjNYavhGM9ENcc9QhI=";
   };
 
+  nativeBuildInputs = [
+    flit-core
+  ];
+
   # Check is disabled due to circular dependency of sphinx
   doCheck = false;
 
@@ -20,7 +30,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.";
     homepage = "https://github.com/sphinx-doc/sphinxcontrib-devhelp";
-    license = licenses.bsd0;
+    license = licenses.bsd2;
     maintainers = teams.sphinx.members;
   };
 }