Unverified Commit 0905a111 authored by Gergő Gutyina's avatar Gergő Gutyina Committed by GitHub
Browse files

python3Packages.textual: 6.11.0 -> 7.0.0 (#477716)

parents 95315fd0 25038653
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -32,6 +32,10 @@ buildPythonPackage rec {

  build-system = [ hatchling ];

  pythonRelaxDeps = [
    "textual"
  ];

  dependencies = [
    pyperclip
    textual
+2 −2
Original line number Diff line number Diff line
@@ -37,14 +37,14 @@

buildPythonPackage rec {
  pname = "textual";
  version = "6.11.0";
  version = "7.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Textualize";
    repo = "textual";
    tag = "v${version}";
    hash = "sha256-xfGxI8Q9a11mD+1Ha+wnJn0HMxAzzhUIeeu1sk5cW+w=";
    hash = "sha256-wXv3Q0/q5U75D/XE6oR8bsUKZhGbP+a8DhNrU6klYjA=";
  };

  build-system = [ poetry-core ];