Skip to content

Commit

Permalink
python311Packages.gpsoauth: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ocfox committed Feb 19, 2024
1 parent 2104e11 commit c0b1470
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/development/python-modules/gpsoauth/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, poetry-core
, pycryptodomex
, pythonOlder
, pythonRelaxDepsHook
, requests
}:

Expand All @@ -20,14 +21,19 @@ buildPythonPackage rec {
};

nativeBuildInputs = [
setuptools
pythonRelaxDepsHook
poetry-core
];

propagatedBuildInputs = [
pycryptodomex
requests
];

pythonRelaxDeps = [
"urllib3"
];

# upstream tests are not very comprehensive
doCheck = false;

Expand Down

0 comments on commit c0b1470

Please sign in to comment.