nixpkgs/pkgs/tools/misc/edir/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
523 B
Nix
Raw Normal View History

{ 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
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;
};
}