pythonPackages.packbits: init at 0.6
This commit is contained in:
parent
2ce51a5772
commit
b5aecbc620
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/packbits/default.nix
Normal file
26
pkgs/development/python-modules/packbits/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pyparsing
|
||||
, six
|
||||
, pytest
|
||||
, pretend
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "packbits";
|
||||
version = "0.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "bc6b370bb34e04ac8cfa835e06c0484380affc6d593adb8009dd6c0f7bfff034";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "PackBits encoder/decoder for Python";
|
||||
homepage = "https://github.com/psd-tools/packbits";
|
||||
license = [ licenses.mit ];
|
||||
maintainers = with maintainers; [ grahamc ];
|
||||
};
|
||||
}
|
|
@ -5642,6 +5642,8 @@ in {
|
|||
|
||||
packaging = callPackage ../development/python-modules/packaging { };
|
||||
|
||||
packbits = callPackage ../development/python-modules/packbits { };
|
||||
|
||||
packet-python = callPackage ../development/python-modules/packet-python { };
|
||||
|
||||
pafy = callPackage ../development/python-modules/pafy { };
|
||||
|
|
Loading…
Reference in a new issue