Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / bitstring / default.nix
blobed67f2be5c5f52026c6aa0ee2b5e9b8da92642c7
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "bitstring";
5   version = "3.1.7";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0jl6192dwrlm5ybkbh7ywmyaymrc3cmz9y07nm7qdli9n9rfpwzx";
10   };
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   };