linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-lzo / default.nix
blob5025b86361a309b61bf81175e7d9fa7f74e3a233
1 { lib, fetchPypi, buildPythonPackage, lzo, nose }:
3 buildPythonPackage rec {
4   pname = "python-lzo";
5   version = "1.12";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0iakqgd51n1cd7r3lpdylm2rgbmd16y74cra9kcapwg84mlf9a4p";
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   };