Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
835 B
Nix
46 lines
835 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "upiano";
|
|
version = "0.1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eliasdorneles";
|
|
repo = "upiano";
|
|
tag = "v${version}";
|
|
hash = "sha256-5WhflvUCjzW4ZJ+PLUTMbKcUnQa3ChkDjl0R5YvjBWk=";
|
|
forceFetchGit = true;
|
|
fetchLFS = true;
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"textual"
|
|
];
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pyfluidsynth
|
|
textual
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"upiano"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Piano in your terminal";
|
|
homepage = "https://github.com/eliasdorneles/upiano";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "upiano";
|
|
};
|
|
}
|