python3Packages.itunespy: init at 1.6

This commit is contained in:
Johannes Arnold 2021-06-15 23:43:05 +02:00
parent 4c7a1acd2a
commit 484e29479e
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildPythonPackage, fetchFromGitHub, requests, pycountry, mypy }:
buildPythonPackage rec {
pname = "itunespy";
version = "1.6";
src = fetchFromGitHub {
owner = "sleepyfran";
repo = pname;
rev = version;
sha256 = "0yc3az5531qs8nbcw4rhgrszwczgy4bikfwfar7xb2044360sslw";
};
propagatedBuildInputs = [ requests pycountry mypy ];
# This module has no tests
doCheck = false;
pythonImportsCheck = [ "itunespy" ];
meta = with lib; {
description = "A simple library to fetch data from the iTunes Store API";
homepage = "https://github.com/sleepyfran/itunespy";
license = licenses.mit;
maintainers = with maintainers; [ j0hax ];
};
}

View file

@ -3528,6 +3528,8 @@ in {
itsdangerous = callPackage ../development/python-modules/itsdangerous { };
itunespy = callPackage ../development/python-modules/itunespy { };
itypes = callPackage ../development/python-modules/itypes { };
j2cli = callPackage ../development/python-modules/j2cli { };