My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix

34 lines
737 B

{ lib
, buildPythonPackage
, fetchPypi
, pbr
}:
buildPythonPackage rec {
pname = "sphinxcontrib-apidoc";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "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;
};
}