nixpkgs/pkgs/development/python-modules/urwidtrees/default.nix
2019-09-08 23:38:31 +00:00

27 lines
495 B
Nix

{ stdenv
, buildPythonPackage
, fetchFromGitHub
, urwid
}:
buildPythonPackage rec {
pname = "urwidtrees";
version = "1.0.2";
src = fetchFromGitHub {
owner = "pazz";
repo = "urwidtrees";
rev = version;
sha256 = "1n1kpidvkdnsqyb82vlvk78gmly96kh8351lqxn2pzgwwns6fml2";
};
propagatedBuildInputs = [ urwid ];
meta = with stdenv.lib; {
description = "Tree widgets for urwid";
homepage = https://github.com/pazz/urwidtrees;
license = licenses.gpl3;
};
}