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