mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
90fbf71333
Inactive in Nixpkgs since 2018 (and a single PR in 2022). https://github.com/NixOS/nixpkgs/issues?q=author%3Acillianderoiste
39 lines
768 B
Nix
39 lines
768 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
zope-location,
|
|
zope-event,
|
|
zope-interface,
|
|
zope-testing,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.schema";
|
|
version = "7.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-6tTbywM1TU5BDJo7kERR60TZAlR1Gxy97fSmGu3p+7k=";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|