about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/lzstring/default.nix
blob: cfd30082c1c80bde9f0f3726e1db077e7464b681 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}