Merge pull request #289932 from ocfox/gpsoauth

python311Packages.gpsoauth: fix build
This commit is contained in:
Peder Bergebakken Sundt 2024-04-14 00:48:39 +02:00 committed by GitHub
commit 65404392b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, poetry-core
, pycryptodomex
, pythonOlder
, pythonRelaxDepsHook
, requests
}:
@ -20,7 +21,8 @@ buildPythonPackage rec {
};
nativeBuildInputs = [
setuptools
pythonRelaxDepsHook
poetry-core
];
propagatedBuildInputs = [
@ -28,6 +30,10 @@ buildPythonPackage rec {
requests
];
pythonRelaxDeps = [
"urllib3"
];
# upstream tests are not very comprehensive
doCheck = false;