diff options
| -rw-r--r-- | hosts/tomato/packages.nix | 1 | ||||
| -rw-r--r-- | pkgs/oauth2token.nix | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/hosts/tomato/packages.nix b/hosts/tomato/packages.nix index 8b7e097..3805205 100644 --- a/hosts/tomato/packages.nix +++ b/hosts/tomato/packages.nix @@ -70,7 +70,6 @@ in azahar # dolphin-emu protonvpn-gui - kccacheproxy waydroid cage ]; diff --git a/pkgs/oauth2token.nix b/pkgs/oauth2token.nix index 791de4f..f9d9544 100644 --- a/pkgs/oauth2token.nix +++ b/pkgs/oauth2token.nix @@ -4,6 +4,7 @@ fetchPypi, pyxdg, google-auth-oauthlib, + setuptools }: buildPythonPackage rec { @@ -15,6 +16,10 @@ buildPythonPackage rec { hash = "sha256-3wJHPYP74rTdqAfVKZ7LrzwP4tCeV+VRasoqs1uw/vg="; }; + pyproject = true; + + build-system = [ setuptools ]; + propagatedBuildInputs = [ pyxdg google-auth-oauthlib |
