mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
pythonPackages.google-music: init at 3.0.1
This commit is contained in:
parent
e9e7c08ca6
commit
a323466604
39
pkgs/development/python-modules/google-music/default.nix
Normal file
39
pkgs/development/python-modules/google-music/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||
, appdirs
|
||||
, audio-metadata
|
||||
, google-music-proto
|
||||
, protobuf
|
||||
, requests_oauthlib
|
||||
, tenacity
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-music";
|
||||
version = "3.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "13i9nd62wqfg0f5r7ykr15q83397vdpw0js50fy5nbgs33sbf6b7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
appdirs
|
||||
audio-metadata
|
||||
google-music-proto
|
||||
protobuf
|
||||
requests_oauthlib
|
||||
tenacity
|
||||
];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/thebigmunch/google-music;
|
||||
description = "A Google Music API wrapper";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jakewaksbaum ];
|
||||
};
|
||||
}
|
@ -1797,6 +1797,8 @@ in {
|
||||
|
||||
google-compute-engine = callPackage ../tools/virtualization/google-compute-engine { };
|
||||
|
||||
google-music = callPackage ../development/python-modules/google-music { };
|
||||
|
||||
google-music-proto = callPackage ../development/python-modules/google-music-proto { };
|
||||
|
||||
google-music-utils = callPackage ../development/python-modules/google-music-utils { };
|
||||
|
Loading…
Reference in New Issue
Block a user