2023-07-15 17:15:38 +00:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "edir";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "2.29";
|
2023-10-09 19:29:22 +00:00
|
|
|
format = "pyproject";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2021-02-13 14:23:35 +00:00
|
|
|
inherit pname version;
|
2024-05-15 15:35:15 +00:00
|
|
|
sha256 = "sha256-5b86/M8xqzwWMCRtsH1qwmooyfOhORgXgctRjzQEmlU=";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
|
|
setuptools-scm
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
platformdirs
|
|
|
|
];
|
|
|
|
|
2021-02-13 14:23:35 +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;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "edir";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
|
|
|
}
|