depot/third_party/nixpkgs/pkgs/tools/misc/edir/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

19 lines
528 B
Nix

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