nixpkgs/pkgs/development/python-modules/zope_testing/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

31 lines
605 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
, zope_interface
, zope_exceptions
, zope_location
}:
buildPythonPackage rec {
pname = "zope.testing";
version = "5.0.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-6HzQ2NZmVzza8TOBare5vuyAGmSoZZXBnLX+mS7z1kk=";
};
doCheck = !isPyPy;
propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];
meta = with lib; {
description = "Zope testing helpers";
homepage = "http://pypi.python.org/pypi/zope.testing";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}