mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
427 B
Nix
22 lines
427 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycosat";
|
|
version = "0.6.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "4c99874946a7e939bb941bbb019dd2c20e6068e3107c91366e7779c69d70e0ed";
|
|
};
|
|
|
|
meta = {
|
|
description = "Bindings to picosat SAT solver";
|
|
homepage = "https://github.com/ContinuumIO/pycosat";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|