nixpkgs/pkgs/development/python-modules/mt-940/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

32 lines
729 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy3k
, enum34, pyyaml, pytest
}:
buildPythonPackage rec {
version = "4.27.0";
pname = "mt-940";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-LL4CRioio63gpXrsurVucrkFgQrEh0gZPZ79Y2tk/90=";
};
propagatedBuildInputs = lib.optional (!isPy3k) enum34;
nativeCheckInputs = [ 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";
license = licenses.bsd3;
};
}