Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
797 B
Nix
41 lines
797 B
Nix
{
|
|
buildPythonPackage,
|
|
cryptography,
|
|
fetchPypi,
|
|
lib,
|
|
protobuf,
|
|
pycryptodome,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.4.4.5";
|
|
format = "setuptools";
|
|
pname = "matlink-gpapi";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "0s45yb2xiq3pc1fh4bygfgly0fsjk5fkc4wckbckn3ddl7v7vz8c";
|
|
};
|
|
|
|
# package doesn't contain unit tests
|
|
# scripts in ./test require networking
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "gpapi.googleplay" ];
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
protobuf
|
|
pycryptodome
|
|
requests
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/NoMore201/googleplay-api";
|
|
license = licenses.gpl3Only;
|
|
description = "Google Play Unofficial Python API";
|
|
maintainers = with maintainers; [ schnusch ];
|
|
};
|
|
}
|