Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
907 B
Nix
43 lines
907 B
Nix
{
|
|
lib,
|
|
buildPythonApplication,
|
|
fetchPypi,
|
|
hatch-vcs,
|
|
hatchling,
|
|
pynput,
|
|
xdg-base-dirs,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "bitwarden-menu";
|
|
version = "0.4.5";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "bitwarden_menu";
|
|
inherit version;
|
|
hash = "sha256-vUlNqSVdGhfN5WjDjf1ub32Y2WoBndIdFzfCNwo5+Vg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatch-vcs
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pynput
|
|
xdg-base-dirs
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
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";
|
|
mainProgram = "bwm";
|
|
homepage = "https://github.com/firecat53/bitwarden-menu";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ aman9das ];
|
|
};
|
|
}
|