python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / python-modules / python-lzo / default.nix
blobdcf55e8e32b0fefe9d3d581784320c1be1487208
1 { lib, fetchPypi, buildPythonPackage, lzo, nose }:
3 buildPythonPackage rec {
4   pname = "python-lzo";
5   version = "1.14";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "83cbd8ecaae284735250e31d6c0ecc18ac08763fab2a8c910dc5a6910db6250c";
10   };
12   buildInputs = [ lzo ];
13   propagatedBuildInputs = [ ];
14   checkInputs = [ nose ];
16   meta = with lib; {
17     homepage = "https://github.com/jd-boyd/python-lzo";
18     description = "Python bindings for the LZO data compression library";
19     license = licenses.gpl2;
20     maintainers = [ maintainers.jbedo ];
21   };