Unverified Commit c0b1470a authored by ocfox's avatar ocfox
Browse files

python311Packages.gpsoauth: fix build

parent 2104e113
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
{ 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;