ae91cbe6cc
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
29 lines
619 B
Nix
29 lines
619 B
Nix
{ lib, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "yams";
|
|
version = "0.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Berulacks";
|
|
repo = "yams";
|
|
rev = version;
|
|
sha256 = "1zkhcys9i0s6jkaz24an690rvnkv1r84jxpaa84sf46abi59ijh8";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pyyaml
|
|
psutil
|
|
mpd2
|
|
requests
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Berulacks/yams";
|
|
description = "Last.FM scrobbler for MPD";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ ccellado ];
|
|
};
|
|
}
|