summary refs log tree commit diff
path: root/pkgs/development/python-modules/eradicate/default.nix
blob: 7c071a5cee6be3b41fc46a8325b614e806ded943 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 ];
  };
}