mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
555 B
Nix
23 lines
555 B
Nix
{ 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 ];
|
|
};
|
|
}
|