pythonPackages.eradicate: init at 0.2.1

This commit is contained in:
Manuel Mendez
2018-10-04 21:26:03 -04:00
committed by Frederik Rietdijk
parent b73579e5f1
commit 80651cff84
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "eradicate";
version = "0.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "092zmck919bn6sl31ixrzhn88g9nvhwzmwzpq8dzgn6c8k2h3bzr";
};
meta = with lib; {
description = "eradicate removes commented-out code from Python files.";
homepage = https://github.com/myint/eradicate;
license = [ licenses.mit ];
maintainers = [ maintainers.mmlb ];
};
}