python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / office / beancount / beancount-ing-diba.nix
blob67c76f73811966adf97ae9c2de1225e6cb3fcd43
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , buildPythonApplication
5 , poetry
6 }:
8 buildPythonApplication rec {
9   pname = "beancount-ing-diba";
10   version = "0.6.0";
12   src = fetchFromGitHub {
13     owner = "siddhantgoel";
14     repo = "beancount-ing-diba";
15     rev = "v${version}";
16     sha256 = "sha256-1cdXqdeTz38n0g13EXJ1/IF/gJJCe1uL/Z5NJz4DL+E=";
17   };
19   format = "pyproject";
21   nativeBuildInputs = [
22     poetry
23   ];
25   meta = with lib; {
26     homepage = "https://github.com/siddhantgoel/beancount-ing-diba";
27     description = "Beancount Importers for ING-DiBa (Germany) CSV Exports";
28     license = licenses.mit;
29     maintainers = with maintainers; [ matthiasbeyer ];
30   };