python.pkgs.zope_copy: move expr

This commit is contained in:
Frederik Rietdijk
2017-12-31 14:06:25 +01:00
parent 06c9299918
commit 562ac8e237
2 changed files with 28 additions and 15 deletions

View File

@@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, zope_interface
, zope_location
, zope_schema
}:
buildPythonPackage rec {
pname = "zope_copy";
version = "4.0.2";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "eb2a95866df1377741876a3ee62d8600e80089e6246e1a235e86791b29534457";
};
propagatedBuildInputs = [ zope_interface ];
checkInputs = [ zope_location zope_schema ];
meta = {
maintainers = with lib.maintainers; [ domenkozar ];
};
}