2023-05-25 14:07:31 +00:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2021-02-07 11:00:06 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "edir";
|
2023-01-27 08:22:21 +00:00
|
|
|
version = "2.16";
|
2021-02-07 11:00:06 +00:00
|
|
|
|
2023-05-25 14:07:31 +00:00
|
|
|
src = fetchPypi {
|
2021-02-07 11:00:06 +00:00
|
|
|
inherit pname version;
|
2023-01-27 08:22:21 +00:00
|
|
|
sha256 = "ro1GZkJ6xDZcMRaWTAW/a2qhFbZAxsduvGO3C4sOI+A=";
|
2021-02-07 11:00:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|