My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zope_schema/default.nix

33 lines
784 B

{ lib
, buildPythonPackage
, fetchPypi
, zope_location
, zope_event
, zope_interface
, zope_testing
}:
buildPythonPackage rec {
pname = "zope.schema";
version = "6.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "2201aef8ad75ee5a881284d7a6acd384661d6dca7bde5e80a22839a77124595b";
};
propagatedBuildInputs = [ zope_location zope_event zope_interface zope_testing ];
# ImportError: No module named 'zope.event'
# even though zope_event has been included.
# Package seems to work fine.
doCheck = false;
meta = with lib; {
homepage = "https://github.com/zopefoundation/zope.schema";
description = "zope.interface extension for defining data schemas";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}