nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildPythonPackage, fetchPypi, pythonOlder
2, attrs
3, audio-metadata
4, marshmallow
5, pendulum
6, protobuf
7, isPy38
8}:
9
10buildPythonPackage rec {
11 pname = "google-music-proto";
12 version = "2.5.1";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "94cd205b3cb0d9e36f3724ace259d4c6de04db97e095577a26a5cfa5e35844c6";
17 };
18
19 propagatedBuildInputs = [
20 attrs
21 audio-metadata
22 marshmallow
23 pendulum
24 protobuf
25 ];
26
27 # No tests
28 doCheck = false;
29
30 disabled = pythonOlder "3.6";
31
32 meta = with lib; {
33 homepage = https://github.com/thebigmunch/google-music-proto;
34 description = "Sans-I/O wrapper of Google Music API calls";
35 license = licenses.mit;
36 maintainers = with maintainers; [ jakewaksbaum ];
37 broken = isPy38;
38 };
39}