mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
Merge pull request #315811 from Aman9das/update-bitwarden-menu
bitwarden-menu: adopt, 0.4.1 -> 0.4.3
This commit is contained in:
commit
fd9b70fbe8
@ -1095,6 +1095,12 @@
|
||||
fingerprint = "1F73 8879 5E5A 3DFC E2B3 FA32 87D1 AADC D25B 8DEE";
|
||||
}];
|
||||
};
|
||||
aman9das = {
|
||||
email = "amandas62640@gmail.com";
|
||||
github = "Aman9das";
|
||||
githubId = 39594914;
|
||||
name = "Aman Das";
|
||||
};
|
||||
amanjeev = {
|
||||
email = "aj@amanjeev.com";
|
||||
github = "amanjeev";
|
||||
|
@ -1,23 +1,30 @@
|
||||
{ lib
|
||||
, buildPythonApplication
|
||||
, python3Packages
|
||||
, fetchPypi
|
||||
, pynput
|
||||
, xdg
|
||||
, xdg-base-dirs
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "bitwarden-menu";
|
||||
version = "0.4.1";
|
||||
format = "setuptools";
|
||||
version = "0.4.3";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-OC+MHEiUU6bDT2wSSDtu0KnwDwBpbLTBta0xjfuzlOI=";
|
||||
pname = "bitwarden_menu";
|
||||
inherit version;
|
||||
hash = "sha256-tuIolWvQ/vKSJr6oUTL7ZLPgdkYsIZods5yQNNfWbWY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
hatch-vcs
|
||||
hatchling
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pynput
|
||||
xdg
|
||||
xdg-base-dirs
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
@ -28,6 +35,6 @@ buildPythonApplication rec {
|
||||
mainProgram = "bwm";
|
||||
homepage = "https://github.com/firecat53/bitwarden-menu";
|
||||
license = licenses.mit;
|
||||
maintainers = [ ];
|
||||
maintainers = with maintainers; [ aman9das ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user