From cc7a4df92d43cfbc1d78c4eb8c3f43cf47412212 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 29 Sep 2020 07:35:16 -0700 Subject: [PATCH] python3Packages.elementpath: 2.0.3 -> 2.0.3 --- .../python-modules/elementpath/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/elementpath/default.nix b/pkgs/development/python-modules/elementpath/default.nix index 5a3a9b0110d..53324f94c89 100644 --- a/pkgs/development/python-modules/elementpath/default.nix +++ b/pkgs/development/python-modules/elementpath/default.nix @@ -1,7 +1,7 @@ { lib, buildPythonPackage, fetchFromGitHub, isPy27 }: buildPythonPackage rec { - version = "2.0.0"; + version = "2.0.3"; pname = "elementpath"; disabled = isPy27; # uses incompatible class syntax @@ -9,19 +9,13 @@ buildPythonPackage rec { owner = "sissaschool"; repo = "elementpath"; rev = "v${version}"; - sha256 = "16kfbiy87qjl07y3iin8jdjhz8j28wlwnkwxq9a0752ipjjg869p"; + sha256 = "16gs5glnlr4i41xbmd30x62zj85apmf69m9akvfnka0gkjlzv8in"; }; # avoid circular dependency with xmlschema which directly depends on this doCheck = false; - pythonImportsCheck = [ - "elementpath.xpath1_parser" - "elementpath.xpath2_parser" - "elementpath.xpath2_functions" - "elementpath.xpath_context" - "elementpath.xpath_selectors" - ]; + pythonImportsCheck = [ "elementpath" ]; meta = with lib; { description = "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml";