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:
Daniel Schaefer 2019-07-28 11:09:31 +02:00 committed by Frederik Rietdijk
parent 92e1376cc3
commit a96b70b336

View file

@ -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";