mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #289932 from ocfox/gpsoauth
python311Packages.gpsoauth: fix build
This commit is contained in:
commit
65404392b0
1 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue