nixpkgs/pkgs/development/python-modules/ofxclient/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

31 lines
743 B
Nix

{ lib, buildPythonPackage, fetchPypi,
ofxhome, ofxparse, beautifulsoup4, lxml, keyring
}:
buildPythonPackage rec {
version = "2.0.3";
format = "setuptools";
pname = "ofxclient";
src = fetchPypi {
inherit pname version;
sha256 = "0jdhqsbl34yn3n0x6mwsnl58c25v5lp6vr910c2hk7l74l5y7538";
};
patchPhase = ''
substituteInPlace setup.py --replace '"argparse",' ""
'';
# ImportError: No module named tests
doCheck = false;
propagatedBuildInputs = [ ofxhome ofxparse beautifulsoup4 lxml keyring ];
meta = with lib; {
homepage = "https://github.com/captin411/ofxclient";
description = "OFX client for dowloading transactions from banks";
mainProgram = "ofxclient";
license = licenses.mit;
};
}