mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
errbot: add glibcLocales to buildInputs
This commit is contained in:
parent
ed6bd02a9d
commit
a8f0b18b9a
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, pythonPackages }:
|
{ stdenv, fetchurl, pythonPackages, glibcLocales }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "errbot-${version}";
|
name = "errbot-${version}";
|
||||||
|
@ -21,6 +21,7 @@ pythonPackages.buildPythonApplication rec {
|
||||||
# tests folder is not included in release
|
# tests folder is not included in release
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
buildInputs = [ glibcLocales ];
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
webtest bottle threadpool rocket-errbot requests jinja2
|
webtest bottle threadpool rocket-errbot requests jinja2
|
||||||
pyopenssl colorlog Yapsy markdown ansi pygments dns pep8
|
pyopenssl colorlog Yapsy markdown ansi pygments dns pep8
|
||||||
|
|
Loading…
Reference in a new issue