pythonPackages.lzstring: init at 1.0.4
This commit is contained in:
parent
ebb8a07062
commit
7d7727e436
24
pkgs/development/python-modules/lzstring/default.nix
Normal file
24
pkgs/development/python-modules/lzstring/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, future
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "lzstring";
|
||||||
|
version = "1.0.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ future ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "lz-string for python";
|
||||||
|
homepage = https://github.com/gkovacs/lz-string-python;
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ obadz ];
|
||||||
|
};
|
||||||
|
}
|
@ -5394,6 +5394,7 @@ in {
|
|||||||
|
|
||||||
casttube = callPackage ../development/python-modules/casttube { };
|
casttube = callPackage ../development/python-modules/casttube { };
|
||||||
|
|
||||||
|
lzstring = callPackage ../development/python-modules/lzstring { };
|
||||||
});
|
});
|
||||||
|
|
||||||
in fix' (extends overrides packages)
|
in fix' (extends overrides packages)
|
||||||
|
Loading…
Reference in New Issue
Block a user