Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / gpsoauth / default.nix
blobb821c7e1f58303418c6a511d5e83d4e18b83cea3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cffi
5 , cryptography
6 , enum34
7 , idna
8 , ipaddress
9 , ndg-httpsclient
10 , pyopenssl
11 , pyasn1
12 , pycparser
13 , pycryptodomex
14 , requests
15 , six
18 buildPythonPackage rec {
19   version = "0.4.3";
20   pname = "gpsoauth";
22   src = fetchPypi {
23     inherit pname version;
24     sha256 = "b38f654450ec55f130c9414d457355d78030a2c29c5ad8f20b28304a9fc8fad7";
25   };
27   propagatedBuildInputs = [ cffi cryptography enum34 idna ipaddress ndg-httpsclient pyopenssl pyasn1 pycparser pycryptodomex requests six ];
29   # no tests executed
30   doCheck = false;
32   pythonImportsCheck = [ "gpsoauth" ];
34   meta = with lib; {
35     description = "A python client library for Google Play Services OAuth";
36     homepage = "https://github.com/simon-weber/gpsoauth";
37     license = licenses.mit;
38     maintainers = with maintainers; [ jgillich ];
39   };