upiano: allow later textual releases

This commit is contained in:
Fabian Affolter 2024-03-19 09:57:08 +01:00
parent 85426e06d0
commit 86950a9c05

View File

@ -6,19 +6,24 @@
python3.pkgs.buildPythonApplication rec {
pname = "upiano";
version = "0.1.2";
format = "pyproject";
pyproject = true;
src = fetchFromGitHub {
owner = "eliasdorneles";
repo = "upiano";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-5WhflvUCjzW4ZJ+PLUTMbKcUnQa3ChkDjl0R5YvjBWk=";
forceFetchGit = true;
fetchLFS = true;
};
nativeBuildInputs = [
python3.pkgs.poetry-core
pythonRelaxDeps = [
"textual"
];
nativeBuildInputs = with python3.pkgs; [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = with python3.pkgs; [
@ -26,7 +31,9 @@ python3.pkgs.buildPythonApplication rec {
textual
];
pythonImportsCheck = [ "upiano" ];
pythonImportsCheck = [
"upiano"
];
meta = with lib; {
description = "A Piano in your terminal";