nixpkgs/pkgs/development/python-modules/lxml/default.nix

35 lines
870 B
Nix
Raw Normal View History

2020-07-07 22:35:00 +01:00
{ lib, buildPythonPackage, fetchFromGitHub
, cython
2017-12-30 14:10:02 +00:00
, libxml2
, libxslt
, zlib
2017-12-30 14:10:02 +00:00
}:
buildPythonPackage rec {
pname = "lxml";
2020-07-07 22:35:00 +01:00
version = "4.5.2";
2017-12-30 14:10:02 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "${pname}-${version}";
2020-07-07 22:35:00 +01:00
sha256 = "1d0cpwdjxfzwjzmnz066ibzicyj2vhx15qxmm775l8hxqi65xps4";
2017-12-30 14:10:02 +00:00
};
# setuptoolsBuildPhase needs dependencies to be passed through nativeBuildInputs
nativeBuildInputs = [ libxml2.dev libxslt.dev cython ];
buildInputs = [ libxml2 libxslt zlib ];
2017-12-30 14:10:02 +00:00
# tests are meant to be ran "in-place" in the same directory as src
doCheck = false;
2017-12-30 14:10:02 +00:00
pythonImportsCheck = [ "lxml" "lxml.etree" ];
2020-07-07 22:35:00 +01:00
meta = with lib; {
2017-12-30 14:10:02 +00:00
description = "Pythonic binding for the libxml2 and libxslt libraries";
homepage = "https://lxml.de";
license = licenses.bsd3;
maintainers = with maintainers; [ jonringer sjourdois ];
2017-12-30 14:10:02 +00:00
};
2018-06-30 01:18:27 +01:00
}