python3Packages.elementpath: update ordering

This commit is contained in:
Fabian Affolter 2021-11-20 09:55:13 +01:00 committed by GitHub
parent 38ea5245a3
commit 32fda5d166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,8 +5,9 @@
}:
buildPythonPackage rec {
version = "2.4.0";
pname = "elementpath";
version = "2.4.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -20,7 +21,9 @@ buildPythonPackage rec {
# avoid circular dependency with xmlschema which directly depends on this
doCheck = false;
pythonImportsCheck = [ "elementpath" ];
pythonImportsCheck = [
"elementpath"
];
meta = with lib; {
description = "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml";