nixpkgs/pkgs/tools/security/lesspass-cli/default.nix

40 lines
1 KiB
Nix
Raw Normal View History

2019-06-25 01:59:55 +02:00
{ stdenv, python3, fetchFromGitHub }:
let
inherit (python3.pkgs) buildPythonApplication pytest mock pexpect;
2019-09-12 05:12:39 +02:00
repo = "lesspass";
2019-06-25 01:59:55 +02:00
in
buildPythonApplication rec {
pname = "lesspass-cli";
version = "9.0.0";
src = fetchFromGitHub {
2019-09-12 05:12:39 +02:00
owner = repo;
repo = repo;
2019-06-25 01:59:55 +02:00
rev = version;
sha256 = "1mdv0c0fn4d72iigy8hz4s7kf7q3pg4gjjadxwxyjwsalapnsapk";
};
sourceRoot = "source/cli";
# some tests are designed to run against code in the source directory - adapt to run against
# *installed* code
postPatch = ''
for f in tests/test_functional.py tests/test_interaction.py ; do
substituteInPlace $f --replace "lesspass/core.py" "-m lesspass.core"
done
'';
checkInputs = [ pytest mock pexpect ];
checkPhase = ''
mv lesspass lesspass.hidden # ensure we're testing against *installed* package
pytest tests
'';
meta = with stdenv.lib; {
description = "Stateless password manager";
homepage = https://lesspass.com;
maintainers = with maintainers; [ jasoncarr ];
license = licenses.gpl3;
};
}