nixpkgs/pkgs/development/python-modules/itunespy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
702 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, requests, pycountry }:
2021-06-15 21:43:05 +00:00
buildPythonPackage rec {
pname = "itunespy";
version = "1.6";
format = "setuptools";
2021-06-15 21:43:05 +00:00
src = fetchFromGitHub {
owner = "sleepyfran";
repo = pname;
rev = version;
sha256 = "0yc3az5531qs8nbcw4rhgrszwczgy4bikfwfar7xb2044360sslw";
};
propagatedBuildInputs = [ requests pycountry ];
2021-06-15 21:43:05 +00:00
# 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 ];
};
}