at 24.05-pre 580 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, pygments 6, isPy3k 7}: 8 9buildPythonPackage rec { 10 version = "0.10.0"; 11 pname = "piep"; 12 disabled = isPy3k; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-aM7KQJZr1P0Hs2ReyRj2ItGUo+fRJ+TU3lLAU2Mu8KA="; 17 }; 18 19 propagatedBuildInputs = [ pygments ]; 20 nativeCheckInputs = [ 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}