pythonPackages.python-lzo: init at 1.12
This commit is contained in:
22
pkgs/development/python-modules/python-lzo/default.nix
Normal file
22
pkgs/development/python-modules/python-lzo/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user