1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-21 05:25:38 +00:00
nixpkgs/pkgs/development/python-modules/bitstruct/default.nix
2020-06-24 14:17:44 -07:00

19 lines
451 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "bitstruct";
version = "8.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "0p9d5242pkzag7ac5b5zdjyfqwxvj2jisyjghp6yhjbbwz1z44rb";
};
meta = with lib; {
homepage = "https://github.com/eerimoq/bitstruct";
description = "Python bit pack/unpack package";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}