yams: init at 0.7.3
yams: init at 0.7.3 yams: init at 0.7.3 yams: init at 0.7.3 yams: init at 0.7.3 Update pkgs/applications/audio/yams/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> yams: init at 0.7.3
This commit is contained in:
parent
c46b679be0
commit
5036a87776
29
pkgs/applications/audio/yams/default.nix
Normal file
29
pkgs/applications/audio/yams/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -12897,6 +12897,8 @@ in
|
||||
|
||||
yaml2json = callPackage ../development/tools/yaml2json { };
|
||||
|
||||
yams = callPackage ../applications/audio/yams { };
|
||||
|
||||
ycmd = callPackage ../development/tools/misc/ycmd {
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||
python = python3;
|
||||
|
Loading…
Reference in New Issue
Block a user