diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-01-19 21:18:31 +0100 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-01-27 10:57:27 +0100 |
| commit | 13ab18a01ac2bb2afbbb026c471b648517e214b0 (patch) | |
| tree | b8c95a6b86f4c8d1c047b9352bda723cf7a9087c /pkgs/development/python-modules | |
| parent | 44885c84dfec351da2602cbd757b380748bf5234 (diff) | |
python3Packages.sphinx-autoapi: 3.3.2 -> 3.4.0
https://github.com/readthedocs/sphinx-autoapi/blob/v3.4.0/CHANGELOG.rst
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/sphinx-autoapi/default.nix | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/sphinx-autoapi/default.nix b/pkgs/development/python-modules/sphinx-autoapi/default.nix index 1da00715ba97..dd93e2abac28 100644 --- a/pkgs/development/python-modules/sphinx-autoapi/default.nix +++ b/pkgs/development/python-modules/sphinx-autoapi/default.nix @@ -1,11 +1,11 @@ { lib, buildPythonPackage, - fetchPypi, + fetchFromGitHub, pythonOlder, # build-system - setuptools, + flit-core, # dependencies astroid, @@ -21,18 +21,19 @@ buildPythonPackage rec { pname = "sphinx-autoapi"; - version = "3.3.2"; + version = "3.4.0"; pyproject = true; disabled = pythonOlder "3.8"; - src = fetchPypi { - pname = "sphinx_autoapi"; - inherit version; - hash = "sha256-6/i0Sy66tcKPAmPsbC+KzdFW6bLVOaWOyjnS82hEUXM="; + src = fetchFromGitHub { + owner = "readthedocs"; + repo = "sphinx-autoapi"; + tag = "v${version}"; + hash = "sha256-EOrbNs1IAeQbdrmOcNaBx2mxN/ec9IvjKTcOr/xR3YA="; }; - build-system = [ setuptools ]; + build-system = [ flit-core ]; dependencies = [ |
