We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 542116f commit 6116313Copy full SHA for 6116313
beku.nix
@@ -0,0 +1,23 @@
1
+{ python3 }:
2
+
3
+python3.pkgs.buildPythonApplication {
4
+ pname = "beku-stackabletech";
5
+ version = "0.0.9";
6
7
+ format = "pyproject";
8
9
+ src = builtins.path {
10
+ path = ./.;
11
+ name = "beku-stackabletech";
12
+ };
13
14
+ nativeBuildInputs = [
15
+ python3.pkgs.setuptools
16
+ ];
17
18
+ propagatedBuildInputs = [
19
+ python3.pkgs.jinja2
20
+ python3.pkgs.pyyaml
21
22
+}
23
default.nix
@@ -0,0 +1,5 @@
+{ pkgs ? import <nixpkgs> {} }:
+{
+ beku = pkgs.callPackage ./beku.nix {};
0 commit comments