Skip to content

Commit

Permalink
python311.pkgs.asynctest: disable
Browse files Browse the repository at this point in the history
Not compatible with Python 3.11[1].

Upstream is dead.

[1]: Martiusweb/asynctest#161
  • Loading branch information
alyssais committed Feb 13, 2023
1 parent d1801a8 commit c654b6c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/asynctest/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, python }:
{ lib, buildPythonPackage, fetchPypi, pythonOlder, pythonAtLeast, python }:

buildPythonPackage rec {
pname = "asynctest";
version = "0.13.0";

disabled = pythonOlder "3.5";
# https://github.com/Martiusweb/asynctest/issues/161
disabled = pythonOlder "3.5" || pythonAtLeast "3.11";

src = fetchPypi {
inherit pname version;
Expand Down

0 comments on commit c654b6c

Please sign in to comment.