depot/third_party/nixpkgs/pkgs/development/python-modules/itunespy/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

37 lines
738 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
pycountry,
}:
buildPythonPackage rec {
pname = "itunespy";
version = "1.6.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "sleepyfran";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-QvSKJAZa8v0tGURXwo4Dwo73JqsYs1xsBHW0lcaM7bk=";
};
propagatedBuildInputs = [
requests
pycountry
];
# This module has no tests
doCheck = false;
pythonImportsCheck = [ "itunespy" ];
meta = with lib; {
description = "Simple library to fetch data from the iTunes Store API";
homepage = "https://github.com/sleepyfran/itunespy";
license = licenses.mit;
maintainers = with maintainers; [ j0hax ];
};
}