1{ lib, fetchPypi, buildPythonPackage, lzo, nose }:
2
3buildPythonPackage rec {
4 pname = "python-lzo";
5 version = "1.12";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0iakqgd51n1cd7r3lpdylm2rgbmd16y74cra9kcapwg84mlf9a4p";
10 };
11
12 buildInputs = [ lzo ];
13 propagatedBuildInputs = [ ];
14 checkInputs = [ nose ];
15
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 };
22}