Merge pull request #143944 from fabaff/bump-upass-ui
python38Packages.upass: 0.1.4 -> 0.2.1
This commit is contained in:
commit
64e6b57f3d
@ -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; [ ];
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user