pythonPackages.configshell: Add urwid to deps
It's required in https://github.com/open-iscsi/configshell-fb/blob/master/configshell/node.py#L1062 and crashes when reaching the function with that import.
This commit is contained in:
parent
92e1376cc3
commit
a96b70b336
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six }:
|
||||
{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six, urwid }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "configshell";
|
||||
|
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
|||
sha256 = "0zpr2n4105qqsklyfyr9lzl1rhxjcv0mnsl57hgk0m763w6na90h";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyparsing six ];
|
||||
propagatedBuildInputs = [ pyparsing six urwid ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Python library for building configuration shells";
|
||||
|
|
Loading…
Reference in a new issue