1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 future,
6}:
7
8buildPythonPackage rec {
9 pname = "lzstring";
10 version = "1.0.4";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs";
16 };
17
18 propagatedBuildInputs = [ future ];
19
20 meta = {
21 description = "lz-string for python";
22 homepage = "https://github.com/gkovacs/lz-string-python";
23 license = lib.licenses.mit;
24 maintainers = with lib.maintainers; [ obadz ];
25 };
26}