summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2021-09-08 22:22:48 +0200
committerGitHub <noreply@github.com>2021-09-08 22:22:48 +0200
commit0c711cd61fb24aedded16f29ec0c5292133a6568 (patch)
tree86dd3af0a94c54f7ce690b0bf718e6f50da71beb
parent40d49815f227c88407c2f450c30dc06a40c8b5de (diff)
parentaa8d87c790ea883475da73baeaa67475f8edd707 (diff)
Merge pull request #137072 from r-ryantm/auto-update/python3.8-elementpath
python38Packages.elementpath: 2.3.0 -> 2.3.1
-rw-r--r--pkgs/development/python-modules/elementpath/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/elementpath/default.nix b/pkgs/development/python-modules/elementpath/default.nix
index ab09f0edf360..538de4ba7de9 100644
--- a/pkgs/development/python-modules/elementpath/default.nix
+++ b/pkgs/development/python-modules/elementpath/default.nix
@@ -1,15 +1,20 @@
-{ lib, buildPythonPackage, fetchFromGitHub, isPy27 }:
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
+}:
buildPythonPackage rec {
- version = "2.3.0";
+ version = "2.3.1";
pname = "elementpath";
- disabled = isPy27; # uses incompatible class syntax
+
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "sissaschool";
repo = "elementpath";
rev = "v${version}";
- sha256 = "1zghj0v1s03ahynx7sczag7iaam757ypwl1lm0ym6j37dnq8vnxk";
+ sha256 = "1imjilhmbw08469irlbr3am5zksbg327n7mznxfixrigq9d65qx6";
};
# avoid circular dependency with xmlschema which directly depends on this