Merge pull request #137072 from r-ryantm/auto-update/python3.8-elementpath

python38Packages.elementpath: 2.3.0 -> 2.3.1

authored by

Fabian Affolter and committed by
GitHub
0c711cd6 40d49815

+9 -4
+9 -4
pkgs/development/python-modules/elementpath/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, isPy27 }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + }: 2 6 3 7 buildPythonPackage rec { 4 - version = "2.3.0"; 8 + version = "2.3.1"; 5 9 pname = "elementpath"; 6 - disabled = isPy27; # uses incompatible class syntax 10 + 11 + disabled = pythonOlder "3.6"; 7 12 8 13 src = fetchFromGitHub { 9 14 owner = "sissaschool"; 10 15 repo = "elementpath"; 11 16 rev = "v${version}"; 12 - sha256 = "1zghj0v1s03ahynx7sczag7iaam757ypwl1lm0ym6j37dnq8vnxk"; 17 + sha256 = "1imjilhmbw08469irlbr3am5zksbg327n7mznxfixrigq9d65qx6"; 13 18 }; 14 19 15 20 # avoid circular dependency with xmlschema which directly depends on this