python3Packages.elementpath: update disable

mullvad-ns
Fabian Affolter 3 years ago committed by GitHub
parent 43a153c671
commit aa8d87c790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      pkgs/development/python-modules/elementpath/default.nix

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

Loading…
Cancel
Save