mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Merge pull request #151216 from matthiasbeyer/add-beancount-ing-diba
beancount-ing-diba: init 0.5.0
This commit is contained in:
commit
e942ab423f
31
pkgs/applications/office/beancount/beancount-ing-diba.nix
Normal file
31
pkgs/applications/office/beancount/beancount-ing-diba.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, buildPythonApplication
|
||||
, poetry
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "beancount-ing-diba";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "siddhantgoel";
|
||||
repo = "beancount-ing-diba";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-1cdXqdeTz38n0g13EXJ1/IF/gJJCe1uL/Z5NJz4DL+E=";
|
||||
};
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/siddhantgoel/beancount-ing-diba";
|
||||
description = "Beancount Importers for ING-DiBa (Germany) CSV Exports";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ matthiasbeyer ];
|
||||
};
|
||||
}
|
@ -32817,6 +32817,10 @@ with pkgs;
|
||||
|
||||
bastet = callPackage ../games/bastet { };
|
||||
|
||||
beancount-ing-diba = callPackage ../applications/office/beancount/beancount-ing-diba.nix {
|
||||
inherit (python3Packages) buildPythonApplication;
|
||||
};
|
||||
|
||||
black-hole-solver = callPackage ../games/black-hole-solver {
|
||||
inherit (perlPackages) PathTiny;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user