lol

Merge pull request #145948 from r-ryantm/auto-update/python38Packages.elementpath

python38Packages.elementpath: 2.3.2 -> 2.4.0

authored by

Fabian Affolter and committed by
GitHub
4abd9ab0 fe8c173a

+6 -3
+6 -3
pkgs/development/python-modules/elementpath/default.nix
··· 5 5 }: 6 6 7 7 buildPythonPackage rec { 8 - version = "2.3.2"; 9 8 pname = "elementpath"; 9 + version = "2.4.0"; 10 + format = "setuptools"; 10 11 11 12 disabled = pythonOlder "3.6"; 12 13 ··· 14 15 owner = "sissaschool"; 15 16 repo = "elementpath"; 16 17 rev = "v${version}"; 17 - sha256 = "01h68v077xbcnqn9v52i8d6s6i7ds3zycn3ddn11hc074m4gg3af"; 18 + sha256 = "1f3w5zyvrkl4gab81i5z9b41ybs54b37znj5r7hrcf25x8hrqgvv"; 18 19 }; 19 20 20 21 # avoid circular dependency with xmlschema which directly depends on this 21 22 doCheck = false; 22 23 23 - pythonImportsCheck = [ "elementpath" ]; 24 + pythonImportsCheck = [ 25 + "elementpath" 26 + ]; 24 27 25 28 meta = with lib; { 26 29 description = "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml";