Unverified Commit 7cd8dbe5 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #297454 from fabaff/upiano-fix

upiano: allow later textual releases
parents 1a1310c1 86950a9c
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
@@ -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";