Skip to content

Commit

Permalink
python313Packages.unify: disable
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Nov 18, 2024
1 parent 8fd58ac commit 87ba457
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/unify/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
pythonOlder,
setuptools,
pytestCheckHook,
Expand All @@ -13,7 +14,8 @@ buildPythonPackage rec {
version = "0.5";
pyproject = true;

disabled = pythonOlder "3.9";
# lib2to3 usage and unmaintained since 2019
disabled = pythonOlder "3.9" || pythonAtLeast "3.13";

src = fetchFromGitHub {
owner = "myint";
Expand Down

0 comments on commit 87ba457

Please sign in to comment.