Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchFromGitHub 4, urwid 5}: 6 7buildPythonPackage rec { 8 pname = "urwidtrees"; 9 version = "1.0.2"; 10 11 src = fetchFromGitHub { 12 owner = "pazz"; 13 repo = "urwidtrees"; 14 rev = "${version}"; 15 sha256 = "1n1kpidvkdnsqyb82vlvk78gmly96kh8351lqxn2pzgwwns6fml2"; 16 }; 17 18 propagatedBuildInputs = [ urwid ]; 19 20 meta = with stdenv.lib; { 21 description = "Tree widgets for urwid"; 22 homepage = https://github.com/pazz/urwidtrees; 23 license = licenses.gpl3; 24 }; 25 26}