1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/lxml/default.nix

28 lines
599 B
Nix
Raw Normal View History

2017-12-30 14:10:02 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, libxml2
, libxslt
}:
buildPythonPackage rec {
pname = "lxml";
2018-04-04 19:10:54 +01:00
version = "4.2.1";
2017-12-30 14:10:02 +00:00
src = fetchPypi {
inherit pname version;
2018-04-04 19:10:54 +01:00
sha256 = "e2629cdbcad82b83922a3488937632a4983ecc0fed3e5cfbf430d069382eeb9b";
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
}