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