about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/bitwarden-menu/default.nix
blob: 5e067ac807d94a9d4163f787e57fbb6ad02649d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ 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.";
    mainProgram = "bwm";
    homepage = "https://github.com/firecat53/bitwarden-menu";
    license = licenses.mit;
    maintainers = [ ];
  };
}