about summary refs log tree commit diff
path: root/pkgs/tools/misc/edir/default.nix
blob: 8bfeae8586aeb9226867739295b09af4ad20c117 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "edir";
  version = "2.16";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "ro1GZkJ6xDZcMRaWTAW/a2qhFbZAxsduvGO3C4sOI+A=";
  };

  meta = with lib; {
    description = "Program to rename and remove files and directories using your editor";
    homepage = "https://github.com/bulletmark/edir";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ guyonvarch ];
    platforms = platforms.all;
  };
}