about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/bitstruct/default.nix
blob: 2bc4a5bbb6167115bf17b885ed7ce81d8eddb345 (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 = "6.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1znqgy2ikdqn6n6mv1ccfbl0q7x65bh3i9ph0yjl4rihwvxyg9fg";
  };

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