nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 30 lines 670 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_interface 5, zope_exceptions 6, zope_testing 7, six 8}: 9 10 11buildPythonPackage rec { 12 pname = "zope.testrunner"; 13 version = "5.4.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "4869229fc909e4aa8e76665a718f90dc88f73858b32ca5fa3dea6840e9210fb4"; 18 }; 19 20 propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ]; 21 22 doCheck = false; # custom test modifies sys.path 23 24 meta = with lib; { 25 description = "A flexible test runner with layer support"; 26 homepage = "https://pypi.python.org/pypi/zope.testrunner"; 27 license = licenses.zpl20; 28 maintainers = [ maintainers.goibhniu ]; 29 }; 30}