2019-08-10 11:17:48 +01:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "boolean.py";
|
2020-07-06 05:52:29 +01:00
|
|
|
version = "3.8";
|
2019-08-10 11:17:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bastikr";
|
|
|
|
repo = "boolean.py";
|
|
|
|
rev = "v${version}";
|
2020-07-06 05:52:29 +01:00
|
|
|
sha256 = "02jznrfrihhk69ai1vnh26s3rshl4kfc2id7li6xccavc2ws5y3b";
|
2019-08-10 11:17:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/bastikr/boolean.py";
|
|
|
|
description = "Implements boolean algebra in one module";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|