Merge pull request #143944 from fabaff/bump-upass-ui

python38Packages.upass: 0.1.4 -> 0.2.1
This commit is contained in:
Fabian Affolter 2021-10-31 15:58:08 +01:00 committed by GitHub
commit 64e6b57f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,24 +6,38 @@
}:
buildPythonPackage rec {
version = "0.1.4";
pname = "upass";
version = "0.2.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "Kwpolska";
repo = "upass";
rev = "v${version}";
sha256 = "sha256-1y/OE8Gbc8bShEiLWg8w4J6icAcoldYQLI10WSQuO1Y=";
sha256 = "0bgplq07dmlld3lp6jag1w055glqislfgwwq2k7cb2bzjgvysdnj";
};
propagatedBuildInputs = [ pyperclip urwid ];
propagatedBuildInputs = [
pyperclip
urwid
];
# Projec thas no tests
doCheck = false;
postInstall = ''
export HOME=$(mktemp -d);
mkdir $HOME/.config
'';
pythonImportsCheck = [
"upass"
];
meta = with lib; {
description = "Console UI for pass";
homepage = "https://github.com/Kwpolska/upass";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}