Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
python-django-haystack: add missing 'setuptools' to propagatedBuildIn…
Browse files Browse the repository at this point in the history
…puts

As a side-effect of f7e28bf, the build
no longer propagated 'setuptools', which is a run-time dependency. See
NixOS/nixpkgs#68314 for further details.

Fixes NixOS/nixpkgs#68479.
  • Loading branch information
peti committed Sep 11, 2019
1 parent d400d6f commit b57f25a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/django-haystack/default.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
, setuptools_scm, django, dateutil, whoosh, pysolr
, setuptools, setuptools_scm, django, dateutil, whoosh, pysolr
, coverage, mock, nose, geopy, requests }:

buildPythonPackage rec {
Expand All @@ -12,7 +12,7 @@ buildPythonPackage rec {
};

checkInputs = [ pysolr whoosh dateutil geopy coverage nose mock coverage requests ];
propagatedBuildInputs = [ django ];
propagatedBuildInputs = [ django setuptools ];
nativeBuildInputs = [ setuptools_scm ];

postPatch = ''
Expand Down

0 comments on commit b57f25a

Please sign in to comment.