diff options
author | Malte Brandy | 2019-10-11 23:32:42 +0200 |
---|---|---|
committer | Malte Brandy | 2019-10-11 23:39:11 +0200 |
commit | 325a7235fdb61c85048a31c70110392b6a0f7b84 (patch) | |
tree | 5b96746580c63fe5962bb95e40d9c6a54a7b9367 | |
parent | d712da456ac41d40af12a791dec584026ddeff7f (diff) | |
download | jali-325a7235fdb61c85048a31c70110392b6a0f7b84.tar.gz jali-325a7235fdb61c85048a31c70110392b6a0f7b84.zip |
Add default.nix
-rw-r--r-- | default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..6f6c891 --- /dev/null +++ b/default.nix | |||
@@ -0,0 +1,10 @@ | |||
1 | with import <nixpkgs> { }; | ||
2 | with python36Packages; | ||
3 | buildPythonApplication rec { | ||
4 | name = "${pname}-${version}"; | ||
5 | pname = "jali"; | ||
6 | doCheck = false; | ||
7 | version = "0.1.0"; | ||
8 | src = ./.; | ||
9 | propagatedBuildInputs = [ jinja2 pendulum GitPython aqbanking ]; | ||
10 | } | ||