Merge pull request #315811 from Aman9das/update-bitwarden-menu

bitwarden-menu: adopt, 0.4.1 -> 0.4.3
This commit is contained in:
lassulus 2024-05-31 09:30:48 +02:00 committed by GitHub
commit fd9b70fbe8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 7 deletions

@ -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 ];
};
}