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 {
|
||||
overlay = final: prev: {
|
||||
fragify = with final; python3Packages.buildPythonApplication {
|
||||
fragify = with final; python3Packages.buildPythonApplication rec {
|
||||
pname = "fragify";
|
||||
version = "0.0.1";
|
||||
format = "other";
|
||||
|
||||
src = self;
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ falcon requests jinja2 ];
|
||||
dependencies = with python3Packages; [ falcon requests jinja2 ];
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 ${./fragify.py} $out/bin/fragify
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
fi
|
||||
'';
|
||||
|
||||
passthru.pythonPath = python3Packages.makePythonPath propagatedBuildInputs;
|
||||
passthru.pythonPath = python3Packages.makePythonPath dependencies;
|
||||
|
||||
meta.mainProgram = "fragify";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue