1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.lzstring: init at 1.0.4

This commit is contained in:
obadz 2019-03-05 04:14:45 +00:00
parent ebb8a07062
commit 7d7727e436
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View file

@ -5394,6 +5394,7 @@ in {
casttube = callPackage ../development/python-modules/casttube { };
lzstring = callPackage ../development/python-modules/lzstring { };
});
in fix' (extends overrides packages)