Skip to content

Commit

Permalink
Merge pull request #575 from nix-community/isso-setuptools
Browse files Browse the repository at this point in the history
v1/drvs/isso: add setuptools and comment
  • Loading branch information
phaer authored Jul 12, 2023
2 parents 0b425be + 43bfbc8 commit 8149d6d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions v1/nix/modules/drvs/isso/default.nix
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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 = {
Expand Down

0 comments on commit 8149d6d

Please sign in to comment.