setup package build
This commit is contained in:
parent
d184388dc0
commit
b43ecf6f24
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,4 @@
|
||||||
/.envrc
|
/.envrc
|
||||||
/.direnv/
|
/.direnv/
|
||||||
|
/dist/
|
||||||
|
/result
|
||||||
|
|
6
beancount_cde_importer/__init__.py
Normal file
6
beancount_cde_importer/__init__.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
from beancount.ingest import importer
|
||||||
|
|
||||||
|
class CaisseDEpargneImporter(importer.ImporterProtocol):
|
||||||
|
|
||||||
|
def identify(self, file):
|
||||||
|
return False
|
|
@ -17,6 +17,11 @@
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
packages.beancount-cde-importer = pkgs.poetry2nix.mkPoetryApplication {
|
||||||
|
projectDir = ./.;
|
||||||
|
};
|
||||||
|
defaultPackage = self.packages.${system}.beancount-cde-importer;
|
||||||
|
|
||||||
devShell = pkgs.mkShell {
|
devShell = pkgs.mkShell {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
poetryEnv
|
poetryEnv
|
||||||
|
|
Loading…
Reference in a new issue