27 lines
585 B
Nix
27 lines
585 B
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, libxml2
|
||
|
, libxslt
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "lxml";
|
||
|
version = "3.8.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "15nvf6n285n282682qyw3wihsncb0x5amdhyi4b83bfa2nz74vvk";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ libxml2 libxslt ];
|
||
|
|
||
|
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
||
|
|
||
|
meta = {
|
||
|
description = "Pythonic binding for the libxml2 and libxslt libraries";
|
||
|
homepage = http://lxml.de;
|
||
|
license = stdenv.lib.licenses.bsd3;
|
||
|
maintainers = with stdenv.lib.maintainers; [ sjourdois ];
|
||
|
};
|
||
|
}
|