python3Packages.sarge: 0.1.7 -> 0.1.7.post1
disable two tests, because they timeout on aarch64-linux
This commit is contained in:
parent
89ab1a6425
commit
0e60137e37
1 changed files with 8 additions and 2 deletions
|
@ -6,20 +6,26 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "sarge";
|
||||
version = "0.1.7";
|
||||
version = "0.1.7.post1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vsajip";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-E1alSDXj0oeyB6dN5PAtN62FPpMsCKb4R9DpfWdFtn0=";
|
||||
sha256 = "sha256-bT1DbcQi+SbeRBsL7ILuQbSnAj3BBB4+FNl+Zek5xU4=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Aarch64-linux times out for these tests, so they need to be disabled.
|
||||
"test_timeout"
|
||||
"test_feeder"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sarge"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue