Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchFromGitHub 2}: 3 4buildPythonPackage rec { 5 pname = "boolean.py"; 6 version = "3.8"; 7 8 src = fetchFromGitHub { 9 owner = "bastikr"; 10 repo = "boolean.py"; 11 rev = "v${version}"; 12 sha256 = "02jznrfrihhk69ai1vnh26s3rshl4kfc2id7li6xccavc2ws5y3b"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/bastikr/boolean.py"; 17 description = "Implements boolean algebra in one module"; 18 license = licenses.bsd2; 19 }; 20 21}