mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
Merge pull request #232738 from rhendric/rhendric/python311Packages.contextlib2
python311Packages.contextlib2: disable
This commit is contained in:
commit
789b0875d7
@ -2,6 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, python
|
||||
, pythonAtLeast
|
||||
, pythonOlder
|
||||
, unittestCheckHook
|
||||
}:
|
||||
@ -11,7 +12,9 @@ buildPythonPackage rec {
|
||||
version = "21.6.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
# Python 3.11 not currently supported
|
||||
# https://github.com/jazzband/contextlib2/issues/43
|
||||
disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
Loading…
Reference in New Issue
Block a user