about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/configshell/default.nix
blob: 9f67aacf2d4eb78bfa5dcdf8804a06b287294e3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchFromGitHub, buildPythonPackage, pyparsing, six, urwid }:

buildPythonPackage rec {
  pname = "configshell";
  version = "1.1.29";

  src = fetchFromGitHub {
    owner = "open-iscsi";
    repo = "${pname}-fb";
    rev = "v${version}";
    sha256 = "0mjj3c9335sph8rhwww7j4zvhyk896fbmx887vibm89w3jpvjjr9";
  };

  propagatedBuildInputs = [ pyparsing six urwid ];

  meta = with lib; {
    description = "A Python library for building configuration shells";
    homepage = "https://github.com/open-iscsi/configshell-fb";
    license = licenses.asl20;
  };
}