base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ed / edir / package.nix
blob85fc426fc57cd52c5a30d5262acb6d48fa84237e
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "edir";
5   version = "2.29";
6   format = "pyproject";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-5b86/M8xqzwWMCRtsH1qwmooyfOhORgXgctRjzQEmlU=";
11   };
13   nativeBuildInputs = with python3Packages; [
14     setuptools-scm
15   ];
17   propagatedBuildInputs = with python3Packages; [
18     platformdirs
19   ];
21   meta = with lib; {
22     description = "Program to rename and remove files and directories using your editor";
23     homepage = "https://github.com/bulletmark/edir";
24     license = licenses.gpl3Plus;
25     maintainers = with maintainers; [ guyonvarch ];
26     platforms = platforms.all;
27     mainProgram = "edir";
28   };