1{ stdenv
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
16}:
17
18buildPythonPackage rec {
19 version = "0.4.1";
20 pname = "gpsoauth";
21
22 src = fetchPypi {
23 inherit pname version;
24 sha256 = "1c3f45824d45ac3d06b9d9a0c0eccafe1052505d31ac9a698aef8b00fb0dfc37";
25 };
26
27 propagatedBuildInputs = [ cffi cryptography enum34 idna ipaddress ndg-httpsclient pyopenssl pyasn1 pycparser pycryptodomex requests six ];
28
29 meta = with stdenv.lib; {
30 description = "A python client library for Google Play Services OAuth";
31 homepage = "https://github.com/simon-weber/gpsoauth";
32 license = licenses.mit;
33 maintainers = with maintainers; [ jgillich ];
34 };
35
36}