nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #234067 from mweinelt/opentracing-3.11-deprecation

python311Packages.opentracing: disable

authored by

Martin Weinelt and committed by
GitHub
70138897 6aab92f4

+5
+5
pkgs/development/python-modules/opentracing/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonAtLeast 4 5 , isPy27 5 6 , futures ? null 6 7 , gevent ··· 15 14 pname = "opentracing"; 16 15 version = "2.4.0"; 17 16 format = "setuptools"; 17 + 18 + # incompatible with asyncio changes in 3.11 and deprecated 19 + # https://github.com/opentracing/specification/issues/163 20 + disabled = pythonAtLeast "3.11"; 18 21 19 22 src = fetchPypi { 20 23 inherit pname version;