depot/third_party/nixpkgs/pkgs/development/python-modules/piep/default.nix
Default email 48af15f7a5 Project import generated by Copybara.
GitOrigin-RevId: 04a2b269d8921505a2969fc9ec25c1f517f2b307
2021-03-20 04:20:00 +00:00

29 lines
576 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
, pygments
, isPy3k
}:
buildPythonPackage rec {
version = "0.9.2";
pname = "piep";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0b5anpsq16xkiisws95jif5s5mplkl1kdnhy0w0i6m0zcy50jnxq";
};
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;
};
}