update module
This commit is contained in:
parent
639e5cb8cf
commit
f4f38cb07a
1 changed files with 3 additions and 3 deletions
|
|
@ -16,14 +16,14 @@
|
||||||
);
|
);
|
||||||
in {
|
in {
|
||||||
overlay = final: prev: {
|
overlay = final: prev: {
|
||||||
fragify = with final; python3Packages.buildPythonApplication {
|
fragify = with final; python3Packages.buildPythonApplication rec {
|
||||||
pname = "fragify";
|
pname = "fragify";
|
||||||
version = "0.0.1";
|
version = "0.0.1";
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
src = self;
|
src = self;
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [ falcon requests jinja2 ];
|
dependencies = with python3Packages; [ falcon requests jinja2 ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -Dm755 ${./fragify.py} $out/bin/fragify
|
install -Dm755 ${./fragify.py} $out/bin/fragify
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.pythonPath = python3Packages.makePythonPath propagatedBuildInputs;
|
passthru.pythonPath = python3Packages.makePythonPath dependencies;
|
||||||
|
|
||||||
meta.mainProgram = "fragify";
|
meta.mainProgram = "fragify";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue