diff --git a/pkgs/development/python-modules/google-music-utils/default.nix b/pkgs/development/python-modules/google-music-utils/default.nix deleted file mode 100644 index 801b4b78a17..00000000000 --- a/pkgs/development/python-modules/google-music-utils/default.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, audio-metadata -, multidict -, poetry -, pytestCheckHook -}: - -buildPythonPackage rec { - pname = "google-music-utils"; - version = "2.5.0"; - - # Pypi tarball doesn't contain tests - src = fetchFromGitHub { - owner = "thebigmunch"; - repo = "google-music-utils"; - rev = version; - sha256 = "0vwbrgakk23fypjspmscz4gllnb3dksv2njy4j4bm8vyr6fwbi5f"; - }; - format = "pyproject"; - - postPatch = '' - substituteInPlace pyproject.toml \ - --replace 'multidict = "^4.0"' 'multidict = ">4.0"' - ''; - - nativeBuildInputs = [ poetry ]; - - propagatedBuildInputs = [ audio-metadata multidict ]; - - checkInputs = [ pytestCheckHook ]; - - meta = with lib; { - homepage = "https://github.com/thebigmunch/google-music-utils"; - description = "A set of utility functionality for google-music and related projects"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; - }; -} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ff380603d32..9c1d2945cc0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2776,8 +2776,6 @@ in { googlemaps = callPackage ../development/python-modules/googlemaps { }; - google-music-utils = callPackage ../development/python-modules/google-music-utils { }; - google-pasta = callPackage ../development/python-modules/google-pasta { }; google-resumable-media = callPackage ../development/python-modules/google-resumable-media { };