at 22.05-pre 576 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, pygments 6, isPy3k 7}: 8 9buildPythonPackage rec { 10 version = "0.9.2"; 11 pname = "piep"; 12 disabled = isPy3k; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "0b5anpsq16xkiisws95jif5s5mplkl1kdnhy0w0i6m0zcy50jnxq"; 17 }; 18 19 propagatedBuildInputs = [ pygments ]; 20 checkInputs = [ nose ]; 21 22 meta = with lib; { 23 description = "Bringing the power of python to stream editing"; 24 homepage = "https://github.com/timbertson/piep"; 25 maintainers = with maintainers; [ timbertson ]; 26 license = licenses.gpl3; 27 }; 28 29}