python3Packages.itunespy: does not depend on mypy

This commit is contained in:
Robert Schütz 2021-07-06 00:29:15 +02:00 committed by Jonathan Ringer
parent 750aebe3dc
commit a42b017bdc

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, requests, pycountry, mypy }:
{ lib, buildPythonPackage, fetchFromGitHub, requests, pycountry }:
buildPythonPackage rec {
pname = "itunespy";
@ -11,7 +11,7 @@ buildPythonPackage rec {
sha256 = "0yc3az5531qs8nbcw4rhgrszwczgy4bikfwfar7xb2044360sslw";
};
propagatedBuildInputs = [ requests pycountry mypy ];
propagatedBuildInputs = [ requests pycountry ];
# This module has no tests
doCheck = false;