ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / gpapi / default.nix
blob6c2454dbbfeb5c9b7370326fb4d60378ee3b307c
1 { buildPythonPackage
2 , cryptography
3 , fetchPypi
4 , lib
5 , pythonOlder
6 , protobuf
7 , pycryptodome
8 , requests
9 }:
11 buildPythonPackage rec {
12   version = "0.4.4";
13   pname = "gpapi";
14   disabled = pythonOlder "3.3"; # uses shutil.which(), added in 3.3
16   src = fetchPypi {
17     inherit version pname;
18     sha256 = "0ampvsv97r3hy1cakif4kmyk1ynf3scbvh4fbk02x7xrxn4kl38w";
19   };
21   # package doesn't contain unit tests
22   # scripts in ./test require networking
23   doCheck = false;
25   pythonImportsCheck = [ "gpapi.googleplay" ];
27   propagatedBuildInputs = [ cryptography protobuf pycryptodome requests ];
29   meta = with lib; {
30     homepage = "https://github.com/NoMore201/googleplay-api";
31     license = licenses.gpl3Only;
32     description = "Google Play Unofficial Python API";
33     maintainers = with maintainers; [ ];
34   };