summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-lzo/default.nix
blob: dcf55e8e32b0fefe9d3d581784320c1be1487208 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchPypi, buildPythonPackage, lzo, nose }:

buildPythonPackage rec {
  pname = "python-lzo";
  version = "1.14";

  src = fetchPypi {
    inherit pname version;
    sha256 = "83cbd8ecaae284735250e31d6c0ecc18ac08763fab2a8c910dc5a6910db6250c";
  };

  buildInputs = [ lzo ];
  propagatedBuildInputs = [ ];
  checkInputs = [ nose ];

  meta = with lib; {
    homepage = "https://github.com/jd-boyd/python-lzo";
    description = "Python bindings for the LZO data compression library";
    license = licenses.gpl2;
    maintainers = [ maintainers.jbedo ];
  };
}