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