Skip to content

Commit

Permalink
python312Packages.raincloudy: disable on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed May 18, 2024
1 parent cefc7f0 commit 254e223
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/raincloudy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
pytest-asyncio,
pytest-aiohttp,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
requests,
requests-mock,
Expand All @@ -22,7 +23,8 @@ buildPythonPackage rec {
version = "1.2.0";
pypriject = true;

disabled = pythonOlder "3.7";
# https://github.com/vanstinator/raincloudy/issues/65
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";

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

0 comments on commit 254e223

Please sign in to comment.