summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-05-25 22:37:38 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-05-28 17:40:44 +0000
commitea94a9a03f4ea5e9058edf2fe6259c7f6e76cb5a (patch)
treeea51700e40742681e9220810e12c85b14d82df39
parentppsspp-{sdl,sdl-wayland,qt}: Install desktop icons (diff)
downloadnixpkgs-ea94a9a03f4ea5e9058edf2fe6259c7f6e76cb5a.tar.gz
python311Packages.opentracing: disable
The upstream project has been archived. (cherry picked from commit 1b2c716b6801654686a5e86efce70eb4eae46ba1)
-rw-r--r--pkgs/development/python-modules/opentracing/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/opentracing/default.nix b/pkgs/development/python-modules/opentracing/default.nix
index f21bf4aa7825..706c47714afe 100644
--- a/pkgs/development/python-modules/opentracing/default.nix
+++ b/pkgs/development/python-modules/opentracing/default.nix
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
+, pythonAtLeast
, isPy27
, futures ? null
, gevent
@@ -15,6 +16,10 @@ buildPythonPackage rec {
version = "2.4.0";
format = "setuptools";
+ # incompatible with asyncio changes in 3.11 and deprecated
+ # https://github.com/opentracing/specification/issues/163
+ disabled = pythonAtLeast "3.11";
+
src = fetchPypi {
inherit pname version;
sha256 = "a173117e6ef580d55874734d1fa7ecb6f3655160b8b8974a2a1e98e5ec9c840d";