Files
nixpkgs/pkgs/development/python-modules/bitstruct/default.nix
T

19 lines
451 B
Nix
Raw Normal View History

2019-01-10 17:09:35 +00:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "bitstruct";
2020-05-06 13:34:52 +00:00
version = "8.10.0";
2019-01-10 17:09:35 +00:00
src = fetchPypi {
inherit pname version;
2020-05-06 13:34:52 +00:00
sha256 = "0dncll29a0lx8hn1xlhr32abkvj1rh8xa6gc0aas8wnqzh7bvqqm";
2019-01-10 17:09:35 +00:00
};
meta = with lib; {
homepage = "https://github.com/eerimoq/bitstruct";
2019-01-10 17:09:35 +00:00
description = "Python bit pack/unpack package";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}