about summary refs log tree commit diff
path: root/pkgs/development/python-modules/elementpath
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-09-29 07:35:16 -0700
committerJon <jonringer@users.noreply.github.com>2020-10-01 21:13:20 -0700
commitcc7a4df92d43cfbc1d78c4eb8c3f43cf47412212 (patch)
treeb24439a105d66cd3504673ed220f0f8d2cd702d8 /pkgs/development/python-modules/elementpath
parent25ee6af8bcd8b88fab77205295ce73b5cd1f567d (diff)
python3Packages.elementpath: 2.0.3 -> 2.0.3
Diffstat (limited to 'pkgs/development/python-modules/elementpath')
-rw-r--r--pkgs/development/python-modules/elementpath/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/elementpath/default.nix b/pkgs/development/python-modules/elementpath/default.nix
index 5a3a9b0110d47..53324f94c89d2 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";