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

28 lines
677 B
Nix
Raw Normal View History

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