pythonPackages.python-constraint: init at 1.4.0
This commit is contained in:
parent
324dd67013
commit
69a7c3ba2d
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3288,6 +3288,8 @@ in {
|
|||||||
|
|
||||||
pytools = callPackage ../development/python-modules/pytools { };
|
pytools = callPackage ../development/python-modules/pytools { };
|
||||||
|
|
||||||
|
python-constraint = callPackage ../development/python-modules/python-constraint { };
|
||||||
|
|
||||||
python-ctags3 = callPackage ../development/python-modules/python-ctags3 { };
|
python-ctags3 = callPackage ../development/python-modules/python-ctags3 { };
|
||||||
|
|
||||||
python-lzo = callPackage ../development/python-modules/python-lzo {
|
python-lzo = callPackage ../development/python-modules/python-lzo {
|
||||||
|
Loading…
Reference in New Issue
Block a user