aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/python-constraint/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/python-constraint/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/python-constraint/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/python-constraint/default.nix b/nixpkgs/pkgs/development/python-modules/python-constraint/default.nix
new file mode 100644
index 00000000000..e6fcc4f8ab7
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/python-constraint/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+ # Check inputs
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "python-constraint";
+ version = "1.4.0";
+
+ src = fetchFromGitHub {
+ owner = "python-constraint";
+ repo = "python-constraint";
+ rev = version;
+ sha256 = "1dv11406yxmmgkkhwzqicajbg2bmla5xfad7lv57zyahxz8jzz94";
+ };
+
+ checkInputs = [ pytestCheckHook ];
+ dontUseSetuptoolsCheck = true;
+
+ meta = with lib; {
+ description = "Constraint Solving Problem resolver for Python.";
+ homepage = "https://labix.org/doc/constraint/";
+ downloadPage = "https://github.com/python-constraint/python-constraint/releases";
+ license = licenses.bsd2;
+ maintainers = with maintainers; [ drewrisinger ];
+ };
+}