python3Packages.sarge: 0.1.7 -> 0.1.7.post1

disable two tests, because they timeout on aarch64-linux
This commit is contained in:
florian on nixos (Florian Brandes) 2022-01-03 21:31:47 +01:00
parent 89ab1a6425
commit 0e60137e37
No known key found for this signature in database
GPG key ID: 074048E893713170

View file

@ -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"
];