python3.pkgs.repoze_sphinx_autointerface: add missing test dependencies

This commit is contained in:
Theodore Ni 2023-08-23 14:32:35 -07:00
parent 95197fe03b
commit f7d1a9709c
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -1,20 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, zope_interface
, zope_testrunner
, sphinx
}:
buildPythonPackage rec {
pname = "repoze.sphinx.autointerface";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-SGvxQjpGlrkVPkiM750ybElv/Bbd6xSwyYh7RsYOKKE=";
};
propagatedBuildInputs = [ zope_interface sphinx ];
propagatedBuildInputs = [
zope_interface
sphinx
];
nativeCheckInputs = [
pytestCheckHook
zope_testrunner
];
meta = with lib; {
homepage = "https://github.com/repoze/repoze.sphinx.autointerface";