setup package build
This commit is contained in:
parent
d184388dc0
commit
b43ecf6f24
3 changed files with 13 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
|||
/.envrc
|
||||
/.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
|
||||
{
|
||||
packages.beancount-cde-importer = pkgs.poetry2nix.mkPoetryApplication {
|
||||
projectDir = ./.;
|
||||
};
|
||||
defaultPackage = self.packages.${system}.beancount-cde-importer;
|
||||
|
||||
devShell = pkgs.mkShell {
|
||||
buildInputs = [
|
||||
poetryEnv
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue