depot/third_party/nixpkgs/pkgs/development/python-modules/piep/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

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;
};
}