summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-27 01:50:20 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-03 23:56:30 +0100
commit10aa1789a9dcc7010ce68ebfe04c6fea10efed02 (patch)
tree7167a735909503ebdc19aaae9e7cae820043e7d6
parent3b5a2db8a6a33a753cf895eb2d1175502f4c9b2f (diff)
downloadnixpkgs-10aa1789a9dcc7010ce68ebfe04c6fea10efed02.tar
nixpkgs-10aa1789a9dcc7010ce68ebfe04c6fea10efed02.tar.gz
nixpkgs-10aa1789a9dcc7010ce68ebfe04c6fea10efed02.tar.bz2
nixpkgs-10aa1789a9dcc7010ce68ebfe04c6fea10efed02.tar.lz
nixpkgs-10aa1789a9dcc7010ce68ebfe04c6fea10efed02.tar.xz
nixpkgs-10aa1789a9dcc7010ce68ebfe04c6fea10efed02.tar.zst
nixpkgs-10aa1789a9dcc7010ce68ebfe04c6fea10efed02.zip
python310Packages.sphinxcontrib-autoapi: 2.0.0 -> 2.0.1
https://github.com/readthedocs/sphinx-autoapi/blob/v2.0.1/CHANGELOG.rst
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-autoapi/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-autoapi/default.nix b/pkgs/development/python-modules/sphinxcontrib-autoapi/default.nix
index 1f4eb94fea5..d351cc506d1 100644
--- a/pkgs/development/python-modules/sphinxcontrib-autoapi/default.nix
+++ b/pkgs/development/python-modules/sphinxcontrib-autoapi/default.nix
@@ -9,19 +9,20 @@
 , pyyaml
 , sphinx
 , stdenv
+, typing-extensions
 , unidecode
 }:
 
 buildPythonPackage rec {
   pname = "sphinx-autoapi";
-  version = "2.0.0";
+  version = "2.0.1";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-l9zxtbVM0Njv74Z1lOSk8+LTosDsHlqJHgphvHcEYAY=";
+    hash = "sha256-zfR5aMIIUvT+sMzv0J5BS7ggr4r4+C+rFaJLCaPRuro=";
   };
 
   propagatedBuildInputs = [
@@ -30,6 +31,8 @@ buildPythonPackage rec {
     pyyaml
     sphinx
     unidecode
+  ] ++ lib.optionals (pythonOlder "3.11") [
+    typing-extensions
   ];
 
   nativeCheckInputs = [
@@ -43,8 +46,13 @@ buildPythonPackage rec {
 
   meta = with lib; {
     homepage = "https://github.com/readthedocs/sphinx-autoapi";
+    changelog = "https://github.com/readthedocs/sphinx-autoapi/blob/v${version}/CHANGELOG.rst";
     description = "Provides 'autodoc' style documentation";
-    longDescription = "Sphinx AutoAPI provides 'autodoc' style documentation for multiple programming languages without needing to load, run, or import the project being documented.";
+    longDescription = ''
+      Sphinx AutoAPI provides 'autodoc' style documentation for
+      multiple programming languages without needing to load, run, or
+      import the project being documented.
+    '';
     license = licenses.mit;
     maintainers = with maintainers; [ karolchmist ];
   };