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