Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 566 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, requests, protobuf, pycryptodome }: 2 3buildPythonPackage rec { 4 version = "0.4.3"; 5 pname = "gpapi"; 6 7 src = fetchPypi { 8 inherit version pname; 9 sha256 = "9fd1351eb29c4da92d3a0ed2cd4e3c1634ea16afddbca133f6acc54766d61b02"; 10 }; 11 12 propagatedBuildInputs = [ requests protobuf pycryptodome ]; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/NoMore201/googleplay-api; 16 license = licenses.gpl3; 17 description = "Google Play Unofficial Python API"; 18 maintainers = with maintainers; [ ma27 ]; 19 }; 20}