mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
36 lines
836 B
Nix
36 lines
836 B
Nix
{ 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 ];
|
|
};
|
|
}
|