pythonPackages.python-lzo: init at 1.12

This commit is contained in:
Justin Bedo
2019-12-18 15:09:32 +11:00
parent 8d5f5e7e3e
commit cf436a812a
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ lib, fetchPypi, buildPythonPackage, lzo, nose }:
buildPythonPackage rec {
pname = "python-lzo";
version = "1.12";
src = fetchPypi {
inherit pname version;
sha256 = "0iakqgd51n1cd7r3lpdylm2rgbmd16y74cra9kcapwg84mlf9a4p";
};
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 ];
};
}