1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "bitstring"; 5 version = "3.1.5"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "1algq30j6rz12b1902bpw7iijx5lhrfqhl80d4ac6xzkrrpshqy1"; 11 extension = "zip"; 12 }; 13 14 meta = with stdenv.lib; { 15 description = "Module for binary data manipulation"; 16 homepage = "https://github.com/scott-griffiths/bitstring"; 17 license = licenses.mit; 18 platforms = platforms.linux; 19 maintainers = with maintainers; [ bjornfor ]; 20 }; 21}