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,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six }:
|
{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six, urwid }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "configshell";
|
pname = "configshell";
|
||||||
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
|||||||
sha256 = "0zpr2n4105qqsklyfyr9lzl1rhxjcv0mnsl57hgk0m763w6na90h";
|
sha256 = "0zpr2n4105qqsklyfyr9lzl1rhxjcv0mnsl57hgk0m763w6na90h";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyparsing six ];
|
propagatedBuildInputs = [ pyparsing six urwid ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A Python library for building configuration shells";
|
description = "A Python library for building configuration shells";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user