depot/third_party/nixpkgs/pkgs/development/python-modules/mt-940/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

46 lines
964 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
pyyaml,
setuptools,
}:
buildPythonPackage rec {
pname = "mt-940";
version = "4.30.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "wolph";
repo = "mt940";
rev = "refs/tags/v${version}";
hash = "sha256-t6FOMu+KcEib+TZAv5uVAzvrUSt/k/RQn28jpdAY5Y0=";
};
postPatch = ''
sed -i "/--cov/d" pytest.ini
sed -i "/--no-cov/d" pytest.ini
'';
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pyyaml
pytestCheckHook
];
pythonImportsCheck = [ "mt940" ];
meta = with lib; {
description = "Module to parse MT940 files and returns smart Python collections for statistics and manipulation";
homepage = "https://github.com/WoLpH/mt940";
changelog = "https://github.com/wolph/mt940/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ ];
};
}