pythonPackages.z3c_checkversions: init at 1.1

pythonPackages.z3c-checkversions: normalize attribute name and pname
z3c_checkversions -> z3c-checkversions

pythonPackages.z3c-checkversions: init at 1.1
This commit is contained in:
Taito Horiuchi 2019-06-19 13:58:46 +03:00 committed by Frederik Rietdijk
parent 82e7ef2c16
commit ca44e9514c
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, python
, zc_buildout
, zope_testrunner
}:
buildPythonPackage rec {
pname = "z3c-checkversions";
version = "1.1";
src = fetchPypi {
inherit version;
pname = "z3c.checkversions";
sha256 = "b45bd22ae01ed60933694fb5abede1ff71fe8ffa79b37082b2fcf38a2f0dec9d";
};
propagatedBuildInputs = [ zc_buildout ];
checkInputs = [ zope_testrunner ];
checkPhase = ''
${python.interpreter} -m zope.testrunner --test-path=src []
'';
meta = with stdenv.lib; {
homepage = https://github.com/zopefoundation/z3c.checkversions;
description = "Find newer package versions on PyPI";
license = licenses.zpl21;
};
}

View File

@ -1994,6 +1994,8 @@ in {
zc_buildout221 = callPackage ../development/python-modules/buildout { };
z3c-checkversions = callPackage ../development/python-modules/z3c-checkversions { };
bunch = callPackage ../development/python-modules/bunch { };
can = callPackage ../development/python-modules/can {};