pythonPackages.bitstruct: init at 6.0.0
This commit is contained in:
parent
bffc32260f
commit
41b69023da
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -1008,6 +1008,8 @@ in {
|
|||
|
||||
bitmath = callPackage ../development/python-modules/bitmath { };
|
||||
|
||||
bitstruct = callPackage ../development/python-modules/bitstruct { };
|
||||
|
||||
caldavclientlibrary-asynk = callPackage ../development/python-modules/caldavclientlibrary-asynk { };
|
||||
|
||||
biopython = callPackage ../development/python-modules/biopython { };
|
||||
|
|
Loading…
Reference in New Issue