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 16}: 17 18buildPythonPackage rec { 19 version = "1.0.0"; 20 pname = "gpsoauth"; 21 22 src = fetchPypi { 23 inherit pname version; 24 sha256 = "1c4d6a980625b8ab6f6f1cf3e30d9b10a6c61ababb2b60bfe4870649e9c82be0"; 25 }; 26 27 propagatedBuildInputs = [ cffi cryptography enum34 idna ipaddress ndg-httpsclient pyopenssl pyasn1 pycparser pycryptodomex requests six ]; 28 29 # no tests executed 30 doCheck = false; 31 32 pythonImportsCheck = [ "gpsoauth" ]; 33 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 }; 40 41}