depot/third_party/nixpkgs/pkgs/development/python-modules/ofxtools/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
857 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
nose,
pythonOlder,
}:
buildPythonPackage rec {
pname = "ofxtools";
version = "0.9.5";
format = "setuptools";
disabled = pythonOlder "3.8";
# PyPI distribution does not include tests
src = fetchFromGitHub {
owner = "csingley";
repo = pname;
rev = version;
hash = "sha256-NsImnD+erhpakQnl1neuHfSKiV6ipNBMPGKMDM0gwWc=";
};
nativeCheckInputs = [ nose ];
# override $HOME directory:
# error: [Errno 13] Permission denied: '/homeless-shelter'
checkPhase = ''
HOME=$TMPDIR nosetests tests/*.py
'';
meta = with lib; {
homepage = "https://github.com/csingley/ofxtools";
description = "Library for working with Open Financial Exchange (OFX) formatted data used by financial institutions";
mainProgram = "ofxget";
license = licenses.mit;
};
}