python3Packages.lxml: 4.5.0 -> 4.5.2

This commit is contained in:
Jonathan Ringer 2020-07-07 14:35:00 -07:00 committed by Frederik Rietdijk
parent cee7df4846
commit 49322fa9c1

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchFromGitHub { lib, buildPythonPackage, fetchFromGitHub
, cython , cython
, libxml2 , libxml2
, libxslt , libxslt
@ -7,13 +7,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "lxml"; pname = "lxml";
version = "4.5.0"; version = "4.5.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "${pname}-${version}"; rev = "${pname}-${version}";
sha256 = "1i3bhg8xb502afq4ar3kgvvi1hy83l4af2gznfwqvb5b221fr7ak"; sha256 = "1d0cpwdjxfzwjzmnz066ibzicyj2vhx15qxmm775l8hxqi65xps4";
}; };
# setuptoolsBuildPhase needs dependencies to be passed through nativeBuildInputs # setuptoolsBuildPhase needs dependencies to be passed through nativeBuildInputs
@ -25,7 +25,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "lxml" "lxml.etree" ]; pythonImportsCheck = [ "lxml" "lxml.etree" ];
meta = with stdenv.lib; { meta = with lib; {
description = "Pythonic binding for the libxml2 and libxslt libraries"; description = "Pythonic binding for the libxml2 and libxslt libraries";
homepage = "https://lxml.de"; homepage = "https://lxml.de";
license = licenses.bsd3; license = licenses.bsd3;