nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix
2018-12-03 16:50:40 +01:00

35 lines
772 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, zope_i18nmessageid
, zope_schema
, zope_testrunner
, manuel
, isPy3k
}:
buildPythonPackage rec {
pname = "zope.configuration";
version = "4.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "ddd162b7b9379c0f5cc060cbf2af44133396b7d26eaee9c7cf6e196d87e9aeb3";
};
checkInputs = [ zope_testrunner manuel ];
propagatedBuildInputs = [ zope_i18nmessageid zope_schema ];
# Need to investigate how to run the tests with zope-testrunner
doCheck = false;
meta = with stdenv.lib; {
description = "Zope Configuration Markup Language (ZCML)";
homepage = https://github.com/zopefoundation/zope.configuration;
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}