summary refs log tree commit diff
path: root/pkgs/development/python-modules/urwidtrees/default.nix
blob: ac9cf73cab170551c9aad0a25fefe9fe811d46a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, urwid
}:

buildPythonPackage rec {
  name = "urwidtrees";
  version  = "1.0";

  src = fetchFromGitHub {
    owner = "pazz";
    repo = "urwidtrees";
    rev = "${version}";
    sha256 = "03gpcdi45z2idy1fd9zv8v9naivmpfx65hshm8r984k9wklv1dsa";
  };

  propagatedBuildInputs = [ urwid ];

  meta = with stdenv.lib; {
    description = "Tree widgets for urwid";
    homepage = https://github.com/pazz/urwidtrees;
    license = licenses.gpl3;
  };

}