Merge pull request #53782 from jbaum98/google-music-scripts
google-music-scripts: init at 3.0.0
This commit is contained in:
commit
7e24c258d7
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||||
|
, attrs
|
||||||
|
, bidict
|
||||||
|
, bitstruct
|
||||||
|
, more-itertools
|
||||||
|
, pprintpp
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "audio-metadata";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1jd0wzhh9as2qyiwggqmvsbsm5nlb73qnxix2mcar53cddvwrvj7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
attrs
|
||||||
|
bidict
|
||||||
|
bitstruct
|
||||||
|
more-itertools
|
||||||
|
pprintpp
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/thebigmunch/audio-metadata;
|
||||||
|
description = "A library for reading and, in the future, writing metadata from audio files";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
|
, setuptools_scm
|
||||||
|
, sphinx
|
||||||
|
, hypothesis
|
||||||
|
, py
|
||||||
|
, pytest
|
||||||
|
, pytest-benchmark
|
||||||
|
, sortedcollections
|
||||||
|
, sortedcontainers
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bidict";
|
||||||
|
version = "0.17.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1icj0fnfx47n6i33pj5gfrmd1rzpvah1jihhdhqiqx2cy9rs6x4c";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
|
propagatedBuildInputs = [ sphinx ];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
hypothesis
|
||||||
|
py
|
||||||
|
pytest
|
||||||
|
pytest-benchmark
|
||||||
|
sortedcollections
|
||||||
|
sortedcontainers
|
||||||
|
];
|
||||||
|
checkPhase = ''
|
||||||
|
pytest tests
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/jab/bidict;
|
||||||
|
description = "Efficient, Pythonic bidirectional map data structures and related functionality";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bitstruct";
|
||||||
|
version = "6.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1znqgy2ikdqn6n6mv1ccfbl0q7x65bh3i9ph0yjl4rihwvxyg9fg";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/eerimoq/bitstruct;
|
||||||
|
description = "Python bit pack/unpack package";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, click, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "click-default-group";
|
||||||
|
version = "1.2";
|
||||||
|
|
||||||
|
# No tests in Pypi tarball
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "click-contrib";
|
||||||
|
repo = "click-default-group";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0lm2k4jvy4ilvv91niawklfnp5mp7wa8c1bicsqdfzrxmw7jliwp";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ click ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/click-contrib/click-default-group;
|
||||||
|
description = "Group to invoke a command without explicit subcommand name";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||||
|
, attrs
|
||||||
|
, audio-metadata
|
||||||
|
, marshmallow
|
||||||
|
, pendulum
|
||||||
|
, protobuf
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "google-music-proto";
|
||||||
|
version = "2.2.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "008nap32hcrlnkkqkf462vwnm6xzrn6fj71lbryfmrakad7rz7bc";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
attrs
|
||||||
|
audio-metadata
|
||||||
|
marshmallow
|
||||||
|
pendulum
|
||||||
|
protobuf
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/thebigmunch/google-music-proto;
|
||||||
|
description = "Sans-I/O wrapper of Google Music API calls";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||||
|
, audio-metadata, multidict, wrapt
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "google-music-utils";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
# Pypi tarball doesn't contain tests
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "thebigmunch";
|
||||||
|
repo = "google-music-utils";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0i5zcr1ypnxizi41s3lrplz9m9rmb56s5iihjx61kbybxcq2b6gk";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
audio-metadata multidict wrapt
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "logzero";
|
||||||
|
version = "1.5.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0hli2wgwxxackrk1ybmlpdd0rzms6blm11zzwlvrzykd8cp1xyil";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/metachris/logzero;
|
||||||
|
description = "Robust and effective logging for Python 2 and 3";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib, fetchpatch, buildPythonPackage, fetchPypi, python, nose, parameterized }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pprintpp";
|
||||||
|
version = "0.4.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "00v4pkyiqc0y9qjnp3br58a4k5zwqdrjjxbcsv39vx67w84630pa";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/wolever/pprintpp/commit/873217674cc824b4c1cfdad4867c560c60e8d806.patch";
|
||||||
|
sha256 = "0rqxzxawr83215s84mfzh1gnjwjm2xv399ywwcl4q7h395av5vb3";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [ nose parameterized ];
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} test.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/wolever/pprintpp;
|
||||||
|
description = "A drop-in replacement for pprint that's actually pretty";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||||
|
, pbr, six, futures, monotonic
|
||||||
|
, pytest, sphinx, tornado
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "tenacity";
|
||||||
|
version = "5.0.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1rjbj9wks7b7n75mbm01y0g2ngyai8yi05ck9gicmcdyix7vw42c";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pbr ];
|
||||||
|
propagatedBuildInputs = [ six ]
|
||||||
|
++ lib.optionals isPy27 [ futures monotonic ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest sphinx tornado ];
|
||||||
|
checkPhase = (if isPy27 then ''
|
||||||
|
pytest --ignore='tenacity/tests/test_asyncio.py'
|
||||||
|
'' else ''
|
||||||
|
pytest
|
||||||
|
'') + ''
|
||||||
|
sphinx-build -a -E -W -b doctest doc/source doc/build
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/jd/tenacity;
|
||||||
|
description = "Retrying library for Python";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib, python3 }:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "google-music-scripts";
|
||||||
|
version = "3.0.0";
|
||||||
|
|
||||||
|
src = python3.pkgs.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "12risivi11z3shrgs1kpi7x6lvk113cbp3dnczw9mmqhb4mmwviy";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
appdirs
|
||||||
|
audio-metadata
|
||||||
|
click
|
||||||
|
click-default-group
|
||||||
|
google-music
|
||||||
|
google-music-utils
|
||||||
|
logzero
|
||||||
|
tomlkit
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/thebigmunch/google-music-scripts;
|
||||||
|
description = "A CLI utility for interacting with Google Music";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3044,6 +3044,8 @@ in
|
||||||
|
|
||||||
google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { };
|
google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { };
|
||||||
|
|
||||||
|
google-music-scripts = callPackage ../tools/audio/google-music-scripts { };
|
||||||
|
|
||||||
gource = callPackage ../applications/version-management/gource { };
|
gource = callPackage ../applications/version-management/gource { };
|
||||||
|
|
||||||
govc = callPackage ../tools/virtualization/govc { };
|
govc = callPackage ../tools/virtualization/govc { };
|
||||||
|
|
|
@ -428,6 +428,8 @@ in {
|
||||||
|
|
||||||
logster = callPackage ../development/python-modules/logster { };
|
logster = callPackage ../development/python-modules/logster { };
|
||||||
|
|
||||||
|
logzero = callPackage ../development/python-modules/logzero { };
|
||||||
|
|
||||||
mail-parser = callPackage ../development/python-modules/mail-parser { };
|
mail-parser = callPackage ../development/python-modules/mail-parser { };
|
||||||
|
|
||||||
manhole = callPackage ../development/python-modules/manhole { };
|
manhole = callPackage ../development/python-modules/manhole { };
|
||||||
|
@ -510,6 +512,8 @@ in {
|
||||||
|
|
||||||
poetry = callPackage ../development/python-modules/poetry { };
|
poetry = callPackage ../development/python-modules/poetry { };
|
||||||
|
|
||||||
|
pprintpp = callPackage ../development/python-modules/pprintpp { };
|
||||||
|
|
||||||
progress = callPackage ../development/python-modules/progress { };
|
progress = callPackage ../development/python-modules/progress { };
|
||||||
|
|
||||||
pymysql = callPackage ../development/python-modules/pymysql { };
|
pymysql = callPackage ../development/python-modules/pymysql { };
|
||||||
|
@ -770,6 +774,8 @@ in {
|
||||||
|
|
||||||
sniffio = callPackage ../development/python-modules/sniffio { };
|
sniffio = callPackage ../development/python-modules/sniffio { };
|
||||||
|
|
||||||
|
tenacity = callPackage ../development/python-modules/tenacity { };
|
||||||
|
|
||||||
tokenserver = callPackage ../development/python-modules/tokenserver {};
|
tokenserver = callPackage ../development/python-modules/tokenserver {};
|
||||||
|
|
||||||
toml = callPackage ../development/python-modules/toml { };
|
toml = callPackage ../development/python-modules/toml { };
|
||||||
|
@ -933,6 +939,8 @@ in {
|
||||||
|
|
||||||
atsim_potentials = callPackage ../development/python-modules/atsim_potentials { };
|
atsim_potentials = callPackage ../development/python-modules/atsim_potentials { };
|
||||||
|
|
||||||
|
audio-metadata = callPackage ../development/python-modules/audio-metadata { };
|
||||||
|
|
||||||
audioread = callPackage ../development/python-modules/audioread { };
|
audioread = callPackage ../development/python-modules/audioread { };
|
||||||
|
|
||||||
audiotools = callPackage ../development/python-modules/audiotools { };
|
audiotools = callPackage ../development/python-modules/audiotools { };
|
||||||
|
@ -996,6 +1004,8 @@ in {
|
||||||
|
|
||||||
bibtexparser = callPackage ../development/python-modules/bibtexparser { };
|
bibtexparser = callPackage ../development/python-modules/bibtexparser { };
|
||||||
|
|
||||||
|
bidict = callPackage ../development/python-modules/bidict { };
|
||||||
|
|
||||||
binwalk = callPackage ../development/python-modules/binwalk { };
|
binwalk = callPackage ../development/python-modules/binwalk { };
|
||||||
|
|
||||||
binwalk-full = appendToName "full" (self.binwalk.override {
|
binwalk-full = appendToName "full" (self.binwalk.override {
|
||||||
|
@ -1004,6 +1014,8 @@ in {
|
||||||
|
|
||||||
bitmath = callPackage ../development/python-modules/bitmath { };
|
bitmath = callPackage ../development/python-modules/bitmath { };
|
||||||
|
|
||||||
|
bitstruct = callPackage ../development/python-modules/bitstruct { };
|
||||||
|
|
||||||
caldavclientlibrary-asynk = callPackage ../development/python-modules/caldavclientlibrary-asynk { };
|
caldavclientlibrary-asynk = callPackage ../development/python-modules/caldavclientlibrary-asynk { };
|
||||||
|
|
||||||
biopython = callPackage ../development/python-modules/biopython { };
|
biopython = callPackage ../development/python-modules/biopython { };
|
||||||
|
@ -1246,6 +1258,8 @@ in {
|
||||||
|
|
||||||
click-completion = callPackage ../development/python-modules/click-completion {};
|
click-completion = callPackage ../development/python-modules/click-completion {};
|
||||||
|
|
||||||
|
click-default-group = callPackage ../development/python-modules/click-default-group { };
|
||||||
|
|
||||||
click-didyoumean = callPackage ../development/python-modules/click-didyoumean {};
|
click-didyoumean = callPackage ../development/python-modules/click-didyoumean {};
|
||||||
|
|
||||||
click-log = callPackage ../development/python-modules/click-log {};
|
click-log = callPackage ../development/python-modules/click-log {};
|
||||||
|
@ -1777,6 +1791,12 @@ in {
|
||||||
|
|
||||||
google-compute-engine = callPackage ../tools/virtualization/google-compute-engine { };
|
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 { };
|
||||||
|
|
||||||
gpapi = callPackage ../development/python-modules/gpapi { };
|
gpapi = callPackage ../development/python-modules/gpapi { };
|
||||||
gplaycli = callPackage ../development/python-modules/gplaycli { };
|
gplaycli = callPackage ../development/python-modules/gplaycli { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue