19 lines
509 B
Nix
19 lines
509 B
Nix
{ stdenv, fetchFromGitLab, lib, python3Packages, mutagen, fold-to-ascii, pyyaml }:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "musicutil";
|
|
version = "latest";
|
|
rev = "9880c175a679bf4450745dc91fb18fb88e0a4fd6";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "ChaotiCryptidz";
|
|
repo = "musicutil";
|
|
inherit rev;
|
|
sha256 = "sha256-pvDxVeCNZy3TKfbFds4QSQPR2lYZR+RZrwBHI+Pfj+w=";
|
|
#sha256 = lib.fakeSha256;
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ mutagen fold-to-ascii pyyaml ];
|
|
}
|