biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / gpsoauth / default.nix
blobd40d2f3c6174764e06f916d3f0d0cf1cc55590bd
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   poetry-core,
6   pycryptodomex,
7   pythonOlder,
8   requests,
9 }:
11 buildPythonPackage rec {
12   pname = "gpsoauth";
13   version = "1.1.1";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-WCAu0wM5fSkntGTcleJxS///haGw+Iv2jzrWOFnr5DU=";
21   };
23   nativeBuildInputs = [
24     poetry-core
25   ];
27   propagatedBuildInputs = [
28     pycryptodomex
29     requests
30   ];
32   pythonRelaxDeps = [ "urllib3" ];
34   # upstream tests are not very comprehensive
35   doCheck = false;
37   pythonImportsCheck = [ "gpsoauth" ];
39   meta = with lib; {
40     description = "Library for Google Play Services OAuth";
41     homepage = "https://github.com/simon-weber/gpsoauth";
42     license = licenses.mit;
43     maintainers = with maintainers; [ jgillich ];
44   };