Commit 594aff3b authored by John Titor's avatar John Titor
Browse files

pyprland: 2.5.1 -> 2.6.2

parent 9c718aea
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -7,19 +7,22 @@

python3Packages.buildPythonApplication rec {
  pname = "pyprland";
  version = "2.5.1";
  version = "2.6.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "hyprland-community";
    repo = "pyprland";
    tag = version;
    hash = "sha256-f3FhkR2asMKK7kckXMWl8Un0hd7A3hZtsviZrBTqzEo=";
    hash = "sha256-jvdXytMnNrINNkSNljYFS9uomPmQ0g2Bnje/8YbsAv8=";
  };

  nativeBuildInputs = with python3Packages; [ poetry-core ];

  propagatedBuildInputs = with python3Packages; [ aiofiles ];
  propagatedBuildInputs = with python3Packages; [
    aiofiles
    pillow
  ];
  pythonRelaxDeps = [
    "aiofiles"
  ];