summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 06:00:46 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:05:20 +0200
commitdeb66945ebf72cfef044443e154aca3bb1ae8afa (patch)
tree642d77440dcc74066fce94e4c4bc33134181b858 /pkgs/development/python-modules
parent7970017b7b6e6f1f89f828eff9dc36dc4db4c4ee (diff)
python313Packages.pychromecast: relax wheel constraint
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pychromecast/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pychromecast/default.nix b/pkgs/development/python-modules/pychromecast/default.nix
index 0a5f43eeb186..e9134566063a 100644
--- a/pkgs/development/python-modules/pychromecast/default.nix
+++ b/pkgs/development/python-modules/pychromecast/default.nix
@@ -25,7 +25,8 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
- --replace-fail "setuptools>=65.6,<78.0" setuptools
+ --replace-fail "setuptools>=65.6,<78.0" setuptools \
+ --replace-fail "wheel>=0.37.1,<0.46.0" wheel
'';
build-system = [ setuptools ];