python3Packages.python-sat: init at 0.1.6.dev6
This commit is contained in:
parent
487c1902b5
commit
1c8204e0fa
24
pkgs/development/python-modules/python-sat/default.nix
Normal file
24
pkgs/development/python-modules/python-sat/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ buildPythonPackage, fetchFromGitHub, lib, six, pypblib, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-sat";
|
||||
version = "0.1.6.dev6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pysathq";
|
||||
repo = "pysat";
|
||||
rev = version;
|
||||
sha256 = "1gckxhqkvzyw7pmwg8xzxq146jysqy0s23l5mjc3awm6swdij66y";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six pypblib ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Toolkit to provide interface for various SAT (without optional dependancy py-aiger-cnf)";
|
||||
homepage = "https://github.com/pysathq/pysat";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.marius851000 ];
|
||||
};
|
||||
}
|
@ -5741,6 +5741,8 @@ in {
|
||||
|
||||
python-rtmidi = callPackage ../development/python-modules/python-rtmidi { };
|
||||
|
||||
python-sat = callPackage ../development/python-modules/python-sat { };
|
||||
|
||||
python-simple-hipchat = callPackage ../development/python-modules/python-simple-hipchat { };
|
||||
python_simple_hipchat = self.python-simple-hipchat;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user