about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/logilab/constraint.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/logilab/constraint.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/logilab/constraint.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/logilab/constraint.nix b/nixpkgs/pkgs/development/python-modules/logilab/constraint.nix
new file mode 100644
index 000000000000..ca9e5b17be85
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/logilab/constraint.nix
@@ -0,0 +1,22 @@
+{ lib, buildPythonPackage, fetchPypi, logilab_common, six }:
+
+buildPythonPackage rec {
+  pname = "logilab-constraint";
+  version = "0.6.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-Jk6wvvcDEeHfy7dUcjbnzFIeGBYm5tXzCI26yy+t2qs=";
+  };
+
+  propagatedBuildInputs = [
+    logilab_common six
+  ];
+
+
+  meta = with lib; {
+    description = "logilab-database provides some classes to make unified access to different";
+    homepage = "https://www.logilab.org/project/logilab-database";
+  };
+}
+