python3Packages.elementpath: update disable

This commit is contained in:
Fabian Affolter 2021-09-08 10:36:23 +02:00 committed by GitHub
parent 43a153c671
commit aa8d87c790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,14 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy27 }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
version = "2.3.1";
pname = "elementpath";
disabled = isPy27; # uses incompatible class syntax
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "sissaschool";