mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
python3Packages.itunespy: init at 1.6
This commit is contained in:
parent
4c7a1acd2a
commit
484e29479e
27
pkgs/development/python-modules/itunespy/default.nix
Normal file
27
pkgs/development/python-modules/itunespy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue