python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / python-modules / lzstring / default.nix
blob499c720d53fb68a793eb858a086f444975fa9e5e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , future
5 }:
7 buildPythonPackage rec {
8   pname   = "lzstring";
9   version = "1.0.4";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs";
14   };
16   propagatedBuildInputs = [ future ];
18   meta = {
19     description = "lz-string for python";
20     homepage    = "https://github.com/gkovacs/lz-string-python";
21     license     = lib.licenses.mit;
22     maintainers = with lib.maintainers; [ obadz ];
23   };