nixpkgs/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

35 lines
735 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pbr
}:
buildPythonPackage rec {
pname = "sphinxcontrib-apidoc";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-cpv1ks97fdV8TAV5T3MtwCYScnXXhcKlSUUh/d53P7k=";
};
postPatch = ''
# break infite recursion, remove pytest 4 requirement
rm test-requirements.txt requirements.txt
'';
propagatedBuildInputs = [
pbr
];
# Check is disabled due to circular dependency of sphinx
doCheck = false;
meta = with lib; {
description = "Sphinx extension for running sphinx-apidoc on each build";
homepage = "https://github.com/sphinx-contrib/apidoc";
license = licenses.bsd2;
maintainers = teams.openstack.members;
};
}