1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

Merge pull request #289957 from fabaff/elementpath-bump

python311Packages.elementpath: 4.1.5 -> 4.3.0
This commit is contained in:
Fabian Affolter 2024-02-19 16:57:10 +01:00 committed by GitHub
commit 1011e4e6dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,12 +2,13 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "elementpath";
version = "4.1.5";
format = "setuptools";
version = "4.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -15,9 +16,13 @@ buildPythonPackage rec {
owner = "sissaschool";
repo = "elementpath";
rev = "refs/tags/v${version}";
hash = "sha256-5K2xcnTo3/A6/pCxQn5qZqni7C64p/yNAWWJlhQeKe4=";
hash = "sha256-DE8XAZwYzbYaTJoBNqHR0x4Wigmke+/zgj562X391qM=";
};
nativeBuildInputs = [
setuptools
];
# avoid circular dependency with xmlschema which directly depends on this
doCheck = false;