python3Packages.elementpath: update ordering

main
Fabian Affolter 3 years ago committed by GitHub
parent 38ea5245a3
commit 32fda5d166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      pkgs/development/python-modules/elementpath/default.nix

@ -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";

Loading…
Cancel
Save