Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 18 lines 438 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 version = "1.2.1"; 5 pname = "bitarray"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1kxrlxfj9nrx512sfwifwl9z4v6ky3qschl0zmk3s3dvc3s7bmif"; 10 }; 11 12 meta = with lib; { 13 description = "Efficient arrays of booleans"; 14 homepage = https://github.com/ilanschnell/bitarray; 15 license = licenses.psfl; 16 maintainers = [ maintainers.bhipple ]; 17 }; 18}