mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-26 22:31:39 +03:00
v1/drvs/isso: add setuptools and comment
This commit is contained in:
parent
0b425bedc4
commit
43bfbc8d74
@ -1,3 +1,9 @@
|
||||
# This example builds https://isso-comments.de. It's meant as a relatively
|
||||
# simple demonstration on how to build applications consiting of a python
|
||||
# backend and a javascript frontend, built with nodejs.
|
||||
#
|
||||
# To actually run an isso server with this, you'd also need a configuration file,
|
||||
# see https://posativ.org/isso/docs/configuration/server/
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
@ -27,6 +33,12 @@ in {
|
||||
rev = "refs/tags/${config.version}";
|
||||
sha256 = "sha256-kZNf7Rlb1DZtQe4dK1B283OkzQQcCX+pbvZzfL65gsA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# isso implicitly assumes that pkg_resources, which is
|
||||
# part of setuptools.
|
||||
config.deps.python.pkgs.setuptools
|
||||
];
|
||||
};
|
||||
|
||||
nodejs-granular = {
|
||||
|
Loading…
Reference in New Issue
Block a user