about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/configshell/default.nix
blob: a41d077f22dfe449854b05e09a1fcb2e65b2b3dd (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.28";

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

  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;
  };
}