about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix b/nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix
new file mode 100644
index 000000000000..28f461689972
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/zope_configuration/default.nix
@@ -0,0 +1,34 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, zope_i18nmessageid
+, zope_schema
+, zope_testrunner
+, manuel
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "zope.configuration";
+  version = "4.3.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "6e16747f9fd6b9d8f09d78edf2a6f539cad0fa4ad49d8deb9cf63447cc4168e1";
+  };
+
+  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 ];
+  };
+
+}