Unverified Commit 8b103154 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #215268 from equirosa/rofi-rbw-1.1.0

rofi-rbw: 1.0.1 -> 1.1.0
parents 4d1f2a29 5477de13
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools }:
{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools, poetry-core }:

buildPythonApplication rec {
  pname = "rofi-rbw";
  version = "1.0.1";
  version = "1.1.0";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "fdw";
    repo = "rofi-rbw";
    rev = "refs/tags/${version}";
    hash = "sha256-YDL0pMl3BX59kzjuykn0lQHu2RMvPhsBrlSiqdcZAXs=";
    hash = "sha256-5K6tofC1bIxxNOQ0jk6NbVoaGGyQImYiUZAaAmkwiTA=";
  };

  nativeBuildInputs = [
    setuptools
    poetry-core
  ];

  propagatedBuildInputs = [ configargparse ];
@@ -24,7 +25,7 @@ buildPythonApplication rec {
    description = "Rofi frontend for Bitwarden";
    homepage = "https://github.com/fdw/rofi-rbw";
    license = licenses.mit;
    maintainers = with maintainers; [ dit7ya ];
    maintainers = with maintainers; [ equirosa dit7ya ];
    platforms = platforms.linux;
  };
}