Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / itunespy / default.nix
blob3bb0bb677bad6f1cd46469bc544a9836b9a9c18b
1 { lib, buildPythonPackage, fetchFromGitHub, requests, pycountry }:
3 buildPythonPackage rec {
4   pname = "itunespy";
5   version = "1.6";
7   src = fetchFromGitHub {
8     owner = "sleepyfran";
9     repo = pname;
10     rev = version;
11     sha256 = "0yc3az5531qs8nbcw4rhgrszwczgy4bikfwfar7xb2044360sslw";
12   };
14   propagatedBuildInputs = [ requests pycountry ];
16   # This module has no tests
17   doCheck = false;
19   pythonImportsCheck = [ "itunespy" ];
21   meta = with lib; {
22     description = "A simple library to fetch data from the iTunes Store API";
23     homepage = "https://github.com/sleepyfran/itunespy";
24     license = licenses.mit;
25     maintainers = with maintainers; [ j0hax ];
26   };