Files
nixpkgs/pkgs/development/python-modules/gpsoauth/default.nix
Martin Weinelt 4199071136 python3Packages.gpsoauth: 1.1.1 -> 2.0.0
This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:41 +02:00

46 lines
825 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pycryptodomex,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "gpsoauth";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-njt2WmpOA2TewbxBV70+1+XsMGZYnihdC0aYaRCqa9I=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
pycryptodomex
requests
];
pythonRelaxDeps = [ "urllib3" ];
# upstream tests are not very comprehensive
doCheck = false;
pythonImportsCheck = [ "gpsoauth" ];
meta = with lib; {
description = "Library for Google Play Services OAuth";
homepage = "https://github.com/simon-weber/gpsoauth";
license = licenses.mit;
maintainers = with maintainers; [ jgillich ];
};
}