1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_interface
5, zope_location
6, zope_schema
7}:
8
9
10buildPythonPackage rec {
11 pname = "zope_copy";
12 version = "4.0.2";
13
14 src = fetchPypi {
15 inherit pname version;
16 extension = "zip";
17 sha256 = "eb2a95866df1377741876a3ee62d8600e80089e6246e1a235e86791b29534457";
18 };
19
20 propagatedBuildInputs = [ zope_interface ];
21
22 checkInputs = [ zope_location zope_schema ];
23
24 meta = {
25 maintainers = with lib.maintainers; [ domenkozar ];
26 };
27}