1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pytestCheckHook,
6 setuptools,
7}:
8
9buildPythonPackage rec {
10 version = "0.3.3";
11 pname = "ofxhome";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "captin411";
16 repo = "ofxhome";
17 rev = "v${version}";
18 hash = "sha256-i16bE9iuafhAKco2jYfg5T5QCWFHdnYVztf1z2XbO9g=";
19 };
20
21 build-system = [ setuptools ];
22
23 nativeCheckInputs = [ pytestCheckHook ];
24
25 # These are helper functions that should not be called as tests
26 disabledTests = [
27 "testfile_name"
28 "testfile"
29 ];
30
31 meta = {
32 homepage = "https://github.com/captin411/ofxhome";
33 description = "ofxhome.com financial institution lookup REST client";
34 license = lib.licenses.mit;
35 maintainers = with lib.maintainers; [ pyrox0 ];
36 };
37}