bitwarden-menu: 0.4.1 -> 0.4.3

This update adds copy to clipboard functionality.
https://github.com/firecat53/bitwarden-menu/releases/tag/v0.4.2
This commit is contained in:
Aman9das 2024-05-30 12:02:02 +05:30
parent aeacd2cc31
commit ffac7a8852

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