python3Packages.sarge: 0.1.7 -> 0.1.7.post1

disable two tests, because they timeout on aarch64-linux
main
florian on nixos (Florian Brandes) 3 years ago
parent 89ab1a6425
commit 0e60137e37
No known key found for this signature in database
GPG Key ID: 074048E893713170
  1. 10
      pkgs/development/python-modules/sarge/default.nix

@ -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…
Cancel
Save