Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / itunespy / default.nix
blobcd1f174c24b8a6e44edd17d0d32a1ff1613382a4
1 { lib, buildPythonPackage, fetchFromGitHub, requests, pycountry }:
3 buildPythonPackage rec {
4   pname = "itunespy";
5   version = "1.6";
6   format = "setuptools";
8   src = fetchFromGitHub {
9     owner = "sleepyfran";
10     repo = pname;
11     rev = version;
12     sha256 = "0yc3az5531qs8nbcw4rhgrszwczgy4bikfwfar7xb2044360sslw";
13   };
15   propagatedBuildInputs = [ requests pycountry ];
17   # This module has no tests
18   doCheck = false;
20   pythonImportsCheck = [ "itunespy" ];
22   meta = with lib; {
23     description = "A simple library to fetch data from the iTunes Store API";
24     homepage = "https://github.com/sleepyfran/itunespy";
25     license = licenses.mit;
26     maintainers = with maintainers; [ j0hax ];
27   };