emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / ofxhome / default.nix
blob0110cfdba10dd416b1a821b0653830a223d83164
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   version = "0.3.3";
11   pname = "ofxhome";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "captin411";
16     repo = "ofxhome";
17     rev = "v${version}";
18     hash = "sha256-i16bE9iuafhAKco2jYfg5T5QCWFHdnYVztf1z2XbO9g=";
19   };
21   build-system = [ setuptools ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   # These are helper functions that should not be called as tests
26   disabledTests = [
27     "testfile_name"
28     "testfile"
29   ];
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   };