Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 448 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "bitstruct"; 5 version = "6.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1znqgy2ikdqn6n6mv1ccfbl0q7x65bh3i9ph0yjl4rihwvxyg9fg"; 10 }; 11 12 meta = with lib; { 13 homepage = https://github.com/eerimoq/bitstruct; 14 description = "Python bit pack/unpack package"; 15 license = licenses.mit; 16 maintainers = with maintainers; [ jakewaksbaum ]; 17 }; 18}