{ lib, buildPythonPackage, fetchPypi, pyxdg, google-auth-oauthlib, }: buildPythonPackage rec { pname = "oauth2token"; version = "0.0.3"; src = fetchPypi { inherit pname version; hash = "sha256-3wJHPYP74rTdqAfVKZ7LrzwP4tCeV+VRasoqs1uw/vg="; }; propagatedBuildInputs = [ pyxdg google-auth-oauthlib ]; meta = with lib; { description = "Simple cli tools to create and use oauth2token"; homepage = "https://github.com/VannTen/oauth2token"; license = licenses.gpl3; maintainers = []; }; }