mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
39 lines
782 B
Nix
39 lines
782 B
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "upiano";
|
|
version = "0.1.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eliasdorneles";
|
|
repo = "upiano";
|
|
rev = "v${version}";
|
|
hash = "sha256-5WhflvUCjzW4ZJ+PLUTMbKcUnQa3ChkDjl0R5YvjBWk=";
|
|
forceFetchGit = true;
|
|
fetchLFS = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3.pkgs.poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pyfluidsynth
|
|
textual
|
|
];
|
|
|
|
pythonImportsCheck = [ "upiano" ];
|
|
|
|
meta = with lib; {
|
|
description = "A Piano in your terminal";
|
|
homepage = "https://github.com/eliasdorneles/upiano";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "upiano";
|
|
};
|
|
}
|