5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
29 lines
576 B
Nix
29 lines
576 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, pygments
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.10.0";
|
|
pname = "piep";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-aM7KQJZr1P0Hs2ReyRj2ItGUo+fRJ+TU3lLAU2Mu8KA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pygments ];
|
|
checkInputs = [ nose ];
|
|
|
|
meta = with lib; {
|
|
description = "Bringing the power of python to stream editing";
|
|
homepage = "https://github.com/timbertson/piep";
|
|
maintainers = with maintainers; [ timbertson ];
|
|
license = licenses.gpl3;
|
|
};
|
|
|
|
}
|