Files
nixpkgs/pkgs/development/python-modules/configshell/default.nix
T

22 lines
576 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six, urwid }:
2018-06-24 15:52:56 +02:00
buildPythonPackage rec {
pname = "configshell";
version = "1.1.28";
2018-06-24 15:52:56 +02:00
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
2018-06-24 15:52:56 +02:00
rev = "v${version}";
sha256 = "1ym2hkvmmacgy21wnjwzyrcxyl3sx4bcx4hc51vf4lzcnj589l68";
2018-06-24 15:52:56 +02:00
};
propagatedBuildInputs = [ pyparsing six urwid ];
2018-06-24 15:52:56 +02:00
meta = with stdenv.lib; {
description = "A Python library for building configuration shells";
homepage = "https://github.com/open-iscsi/configshell-fb";
2018-06-24 15:52:56 +02:00
license = licenses.asl20;
};
}