1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 15:47:28 +00:00
nixpkgs/pkgs/development/python-modules/lxml/default.nix

29 lines
650 B
Nix
Raw Normal View History

2017-12-30 14:10:02 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, libxml2
, libxslt
}:
buildPythonPackage rec {
pname = "lxml";
2019-04-16 18:15:37 +01:00
version = "4.3.3";
2017-12-30 14:10:02 +00:00
src = fetchPypi {
inherit pname version;
2019-04-16 18:15:37 +01:00
sha256 = "4a03dd682f8e35a10234904e0b9508d705ff98cf962c5851ed052e9340df3d90";
2017-12-30 14:10:02 +00:00
};
nativeBuildInputs = [ libxml2.dev libxslt.dev ];
2017-12-30 14:10:02 +00:00
buildInputs = [ libxml2 libxslt ];
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
meta = {
description = "Pythonic binding for the libxml2 and libxslt libraries";
2018-06-30 01:18:27 +01:00
homepage = https://lxml.de;
2017-12-30 14:10:02 +00:00
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ sjourdois ];
};
2018-06-30 01:18:27 +01:00
}