1{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six, urwid }:
2
3buildPythonPackage rec {
4 pname = "configshell";
5 version = "1.1.fb25";
6
7 src = fetchFromGitHub {
8 owner = "open-iscsi";
9 repo ="${pname}-fb";
10 rev = "v${version}";
11 sha256 = "0zpr2n4105qqsklyfyr9lzl1rhxjcv0mnsl57hgk0m763w6na90h";
12 };
13
14 propagatedBuildInputs = [ pyparsing six urwid ];
15
16 meta = with stdenv.lib; {
17 description = "A Python library for building configuration shells";
18 homepage = https://github.com/open-iscsi/configshell-fb;
19 license = licenses.asl20;
20 };
21}