summary refs log tree commit diff
path: root/pkgs/development/python-modules/lxml
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-07-07 14:35:00 -0700
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-07-30 18:39:17 +0200
commit49322fa9c12a70d24184815df8b1dd5747d490ea (patch)
tree587a5c90d8e03a2dac435bd02d519c40c9bbd471 /pkgs/development/python-modules/lxml
parentcee7df4846e1ccd2d5b91de8061eff82ea7fa4f7 (diff)
python3Packages.lxml: 4.5.0 -> 4.5.2
Diffstat (limited to 'pkgs/development/python-modules/lxml')
-rw-r--r--pkgs/development/python-modules/lxml/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/lxml/default.nix b/pkgs/development/python-modules/lxml/default.nix
index f39e71ed6901c..aa009e0a3e732 100644
--- a/pkgs/development/python-modules/lxml/default.nix
+++ b/pkgs/development/python-modules/lxml/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub
+{ lib, buildPythonPackage, fetchFromGitHub
 , cython
 , libxml2
 , libxslt
@@ -7,13 +7,13 @@
 
 buildPythonPackage rec {
   pname = "lxml";
-  version = "4.5.0";
+  version = "4.5.2";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = "${pname}-${version}";
-    sha256 = "1i3bhg8xb502afq4ar3kgvvi1hy83l4af2gznfwqvb5b221fr7ak";
+    sha256 = "1d0cpwdjxfzwjzmnz066ibzicyj2vhx15qxmm775l8hxqi65xps4";
   };
 
   # setuptoolsBuildPhase needs dependencies to be passed through nativeBuildInputs
@@ -25,7 +25,7 @@ buildPythonPackage rec {
 
   pythonImportsCheck = [ "lxml" "lxml.etree" ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Pythonic binding for the libxml2 and libxslt libraries";
     homepage = "https://lxml.de";
     license = licenses.bsd3;