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
No known key found for this signature in database
GPG Key ID: 2C18202C56C182BD
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 ];
};
}

View File

@ -2930,6 +2930,10 @@ in {
python-ctags3 = callPackage ../development/python-modules/python-ctags3 { };
python-lzo = callPackage ../development/python-modules/python-lzo {
inherit (pkgs) lzo;
};
junos-eznc = callPackage ../development/python-modules/junos-eznc {};
raven = callPackage ../development/python-modules/raven { };