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

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

30 lines
724 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
2021-02-07 12:00:06 +01:00
python3Packages.buildPythonApplication rec {
pname = "edir";
2024-01-22 01:54:16 +01:00
version = "2.27";
format = "pyproject";
2021-02-07 12:00:06 +01:00
src = fetchPypi {
2021-02-07 12:00:06 +01:00
inherit pname version;
2024-01-22 01:54:16 +01:00
sha256 = "sha256-i9c5DDZnCj6Roqw6fpy+rhX2/Sup1hh8vIpsRcWZQFc=";
2021-02-07 12:00:06 +01:00
};
nativeBuildInputs = with python3Packages; [
setuptools-scm
];
propagatedBuildInputs = with python3Packages; [
platformdirs
];
2021-02-07 12:00:06 +01: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;
2023-11-27 02:17:53 +01:00
mainProgram = "edir";
2021-02-07 12:00:06 +01:00
};
}