summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/buku
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2017-06-29 16:19:24 +0200
committerSilvan Mosberger <infinisil@icloud.com>2017-06-29 16:19:24 +0200
commitfb62250664fef3c1a51a942a5b7c2fd97070166d (patch)
tree0888295e97816cc29f4b03d0a1ffa948d1f29f75 /pkgs/applications/misc/buku
parent87cfea92f894e6c8fa57eedaa32d73234559473d (diff)
buku: Enabled tests and added shell completion
Diffstat (limited to 'pkgs/applications/misc/buku')
-rw-r--r--pkgs/applications/misc/buku/default.nix30
1 files changed, 25 insertions, 5 deletions
diff --git a/pkgs/applications/misc/buku/default.nix b/pkgs/applications/misc/buku/default.nix
index 72ba96ad701f..18d59d12fbad 100644
--- a/pkgs/applications/misc/buku/default.nix
+++ b/pkgs/applications/misc/buku/default.nix
@@ -1,5 +1,4 @@
-{ stdenv, pythonPackages, fetchFromGitHub,
-}:
+{ stdenv, pythonPackages, fetchFromGitHub }:
with pythonPackages; buildPythonApplication rec {
version = "3.0";
@@ -12,6 +11,13 @@ with pythonPackages; buildPythonApplication rec {
sha256 = "1a33x3197vi5s8rq5fvhy021jdlsc8ww8zc4kysss6r9mvdlk7ax";
};
+ buildInputs = [
+ pytestcov
+ pytest-catchlog
+ hypothesis
+ pytest
+ ];
+
propagatedBuildInputs = [
cryptography
beautifulsoup4
@@ -19,13 +25,27 @@ with pythonPackages; buildPythonApplication rec {
urllib3
];
- phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
+ preCheck = ''
+ # Fixes two tests for wrong encoding
+ export PYTHONIOENCODING=utf-8
+
+ # https://github.com/jarun/Buku/pull/167
+ substituteInPlace setup.py \
+ --replace "hypothesis==3.7.0" "hypothesis>=3.7.0"
+
+ # Disables a test which requires internet
+ substituteInPlace tests/test_bukuDb.py \
+ --replace "@pytest.mark.slowtest" "@unittest.skip('skipping')"
+ '';
installPhase = ''
make install PREFIX=$out
- '';
- doCheck = false;
+ mkdir -p $out/share/zsh/site-functions $out/share/bash-completion/completions $out/share/fish/vendor_completions.d
+ cp auto-completion/zsh/* $out/share/zsh/site-functions
+ cp auto-completion/bash/* $out/share/bash-completion/completions
+ cp auto-completion/fish/* $out/share/fish/vendor_completions.d
+ '';
meta = with stdenv.lib; {
description = "Private cmdline bookmark manager";