linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / edir / default.nix
blob7cd621be76a89a387c2662d85ca18c8b8ade9a15
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "edir";
5   version = "2.7.3";
7   src = python3Packages.fetchPypi {
8     inherit pname version;
9     sha256 = "06nsy9ikljc437368l38hsw75whacn3j6jwmdgg766q61pnifhkp";
10   };
12   meta = with lib; {
13     description = "Program to rename and remove files and directories using your editor";
14     homepage = "https://github.com/bulletmark/edir";
15     license = licenses.gpl3Plus;
16     maintainers = with maintainers; [ guyonvarch ];
17     platforms = platforms.all;
18   };