2023-01-20 01:12:10 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchPypi
|
|
|
|
, pynput
|
|
|
|
, xdg
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "bitwarden-menu";
|
|
|
|
version = "0.4.1";
|
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-OC+MHEiUU6bDT2wSSDtu0KnwDwBpbLTBta0xjfuzlOI=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pynput
|
|
|
|
xdg
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://github.com/firecat53/bitwarden-menu/releases/tag/v${version}";
|
|
|
|
description = "Dmenu/Rofi frontend for managing Bitwarden vaults. Uses the Bitwarden CLI tool to interact with the Bitwarden database.";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "bwm";
|
2023-01-20 01:12:10 +00:00
|
|
|
homepage = "https://github.com/firecat53/bitwarden-menu";
|
|
|
|
license = licenses.mit;
|
2023-09-03 23:13:53 +00:00
|
|
|
maintainers = [ ];
|
2023-01-20 01:12:10 +00:00
|
|
|
};
|
|
|
|
}
|