summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-music-utils/default.nix
blob: 84f677d4d4e40eced5a62092ff6585523f3aaf2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, audio-metadata, multidict, wrapt
, pytest
}:

buildPythonPackage rec {
  pname = "google-music-utils";
  version = "2.1.0";

  # Pypi tarball doesn't contain tests
  src = fetchFromGitHub {
    owner = "thebigmunch";
    repo = "google-music-utils";
    rev = version;
    sha256 = "0fn4zp0gf1wx2x06dbc840qcq21j4p3ajghxp7646w2n6n9gxhh7";
  };

  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 ];
  };
}