summary refs log tree commit diff
path: root/pkgs/development/python-modules/bitstruct/default.nix
blob: 7c58aab85c4c0d962713cdb5f1b41ebe73d69fe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "bitstruct";
  version = "8.8.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "84893f90eb78f8179af24a87622ef964ede5c7e785562022917033987d6ce198";
  };

  meta = with lib; {
    homepage = "https://github.com/eerimoq/bitstruct";
    description = "Python bit pack/unpack package";
    license = licenses.mit;
    maintainers = with maintainers; [ jakewaksbaum ];
  };
}