nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonApplication
3, fetchPypi
4, pynput
5, xdg
6}:
7
8buildPythonApplication rec {
9 pname = "bitwarden-menu";
10 version = "0.4.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-OC+MHEiUU6bDT2wSSDtu0KnwDwBpbLTBta0xjfuzlOI=";
16 };
17
18 propagatedBuildInputs = [
19 pynput
20 xdg
21 ];
22
23 doCheck = false;
24
25 meta = with lib; {
26 changelog = "https://github.com/firecat53/bitwarden-menu/releases/tag/v${version}";
27 description = "Dmenu/Rofi frontend for managing Bitwarden vaults. Uses the Bitwarden CLI tool to interact with the Bitwarden database.";
28 homepage = "https://github.com/firecat53/bitwarden-menu";
29 license = licenses.mit;
30 maintainers = [ maintainers.rodrgz ];
31 };
32}