summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2020-03-13 10:39:32 +0100
committermakefu <github@syntax-fehler.de>2020-03-13 10:39:32 +0100
commita2d343e8070097de9c62f86dfd8cca883f55cd53 (patch)
tree296e8fcbb6701171cfeedea46e0177495b5895cf /makefu/5pkgs
parentbf5a5fb3e0f70aeda37900e1c5ce478a2b07a764 (diff)
ma pkgs.hydra-check: move to custom
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r--makefu/5pkgs/custom/hydra-check/default.nix (renamed from makefu/5pkgs/hydra-check/default.nix)6
1 files changed, 2 insertions, 4 deletions
diff --git a/makefu/5pkgs/hydra-check/default.nix b/makefu/5pkgs/custom/hydra-check/default.nix
index b9930b4f..512ceec9 100644
--- a/makefu/5pkgs/hydra-check/default.nix
+++ b/makefu/5pkgs/custom/hydra-check/default.nix
@@ -1,6 +1,5 @@
-{ python3Packages, fetchFromGitHub }:
+{ docopt, requests, beautifulsoup4, fetchFromGitHub, buildPythonPackage }:
-with python3Packages;
buildPythonPackage rec {
name = "hydra-check";
version = "1.0.0";
@@ -16,6 +15,5 @@ buildPythonPackage rec {
requests
beautifulsoup4
];
-
- checkInputs = [ black jq ];
+ doCheck = false; # no tests
}