audiobookshelf: 2.18.1 -> 2.19.0 (#378967)
[NixPkgs.git] / pkgs / by-name / ed / edir / package.nix
blob406f6a677e6a6e790df2c718bd115f5feda2f890
2   lib,
3   python3Packages,
4   fetchPypi,
5 }:
7 python3Packages.buildPythonApplication rec {
8   pname = "edir";
9   version = "2.30";
10   format = "pyproject";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-kqFJhPIdinqPBKfNY3lHeMXpzrcnSkFODGBiqGt/whM=";
15   };
17   nativeBuildInputs = with python3Packages; [
18     setuptools-scm
19   ];
21   propagatedBuildInputs = with python3Packages; [
22     platformdirs
23   ];
25   meta = with lib; {
26     description = "Program to rename and remove files and directories using your editor";
27     homepage = "https://github.com/bulletmark/edir";
28     license = licenses.gpl3Plus;
29     maintainers = with maintainers; [ guyonvarch ];
30     platforms = platforms.all;
31     mainProgram = "edir";
32   };