Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 524 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "bitstring"; 5 version = "3.1.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1algq30j6rz12b1902bpw7iijx5lhrfqhl80d4ac6xzkrrpshqy1"; 10 extension = "zip"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "Module for binary data manipulation"; 15 homepage = "https://github.com/scott-griffiths/bitstring"; 16 license = licenses.mit; 17 platforms = platforms.unix; 18 maintainers = with maintainers; [ bjornfor ]; 19 }; 20}