edir: init at 2.7.3

This commit is contained in:
Joris
2021-02-07 17:42:06 +01:00
parent f0d8828b86
commit 6e4a887d09
2 changed files with 21 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "edir";
version = "2.7.3";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "06nsy9ikljc437368l38hsw75whacn3j6jwmdgg766q61pnifhkp";
};
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;
};
}