Merge pull request #289932 from ocfox/gpsoauth

python311Packages.gpsoauth: fix build

authored by Peder Bergebakken Sundt and committed by GitHub 65404392 20d55e8b

+8 -2
+8 -2
pkgs/development/python-modules/gpsoauth/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , setuptools 5 , pycryptodomex 6 , pythonOlder 7 , requests 8 }: 9 ··· 20 }; 21 22 nativeBuildInputs = [ 23 - setuptools 24 ]; 25 26 propagatedBuildInputs = [ 27 pycryptodomex 28 requests 29 ]; 30 31 # upstream tests are not very comprehensive
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + , poetry-core 5 , pycryptodomex 6 , pythonOlder 7 + , pythonRelaxDepsHook 8 , requests 9 }: 10 ··· 21 }; 22 23 nativeBuildInputs = [ 24 + pythonRelaxDepsHook 25 + poetry-core 26 ]; 27 28 propagatedBuildInputs = [ 29 pycryptodomex 30 requests 31 + ]; 32 + 33 + pythonRelaxDeps = [ 34 + "urllib3" 35 ]; 36 37 # upstream tests are not very comprehensive