mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 07:34:36 +00:00
28 lines
551 B
Nix
28 lines
551 B
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, pygments
|
||
|
, isPy3k
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
version = "0.8.0";
|
||
|
pname = "piep";
|
||
|
disabled = isPy3k;
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "1wgkg1kc28jpya5k4zvbc9jmpa60b3d5c3gwxfbp15hw6smyqirj";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pygments ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Bringing the power of python to stream editing";
|
||
|
homepage = https://github.com/timbertson/piep;
|
||
|
maintainers = with maintainers; [ timbertson ];
|
||
|
license = licenses.gpl3;
|
||
|
};
|
||
|
|
||
|
}
|