504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
35 lines
801 B
Nix
35 lines
801 B
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, zc-buildout
|
|
, zope_testrunner
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "z3c-checkversions";
|
|
version = "2.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "z3c.checkversions";
|
|
hash = "sha256-j5So40SyJf7XfCz3P9YFR/6z94up3LY2/dfEmmIbxAk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zc-buildout ];
|
|
|
|
nativeCheckInputs = [ zope_testrunner ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m zope.testrunner --test-path=src []
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/zopefoundation/z3c.checkversions";
|
|
changelog = "https://github.com/zopefoundation/z3c.checkversions/blob/${version}/CHANGES.rst";
|
|
description = "Find newer package versions on PyPI";
|
|
license = licenses.zpl21;
|
|
};
|
|
}
|