blob: 156cba6383cbd04c8d3efa775f13b6c5e2da60ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
pycountry,
}:
buildPythonPackage rec {
pname = "itunespy";
version = "1.6.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "sleepyfran";
repo = "itunespy";
tag = "v${version}";
sha256 = "sha256-QvSKJAZa8v0tGURXwo4Dwo73JqsYs1xsBHW0lcaM7bk=";
};
propagatedBuildInputs = [
requests
pycountry
];
# This module has no tests
doCheck = false;
pythonImportsCheck = [ "itunespy" ];
meta = {
description = "Simple library to fetch data from the iTunes Store API";
homepage = "https://github.com/sleepyfran/itunespy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ j0hax ];
};
}
|