From fc068404d7ab13d408988752b71d7833b2e80230 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 6 Jul 2020 08:40:15 -0700 Subject: [PATCH] python3Packages.mt-940: disable tests, no longer present --- pkgs/development/python-modules/mt-940/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/mt-940/default.nix b/pkgs/development/python-modules/mt-940/default.nix index d28cda99d748..01abd718c758 100644 --- a/pkgs/development/python-modules/mt-940/default.nix +++ b/pkgs/development/python-modules/mt-940/default.nix @@ -15,10 +15,14 @@ buildPythonPackage rec { checkInputs = [ pyyaml pytest ]; + # requires tests files that are not present + doCheck = false; checkPhase = '' py.test ''; + pythonImportsCheck = [ "mt940" ]; + meta = with lib; { description = "A library to parse MT940 files and returns smart Python collections for statistics and manipulation"; homepage = "https://github.com/WoLpH/mt940";