1{ lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }:
2
3buildPythonPackage rec {
4 pname = "update-dotdee";
5 version = "5.0";
6
7 src = fetchFromGitHub {
8 owner = "xolox";
9 repo = "python-update-dotdee";
10 rev = version;
11 sha256 = "1h3m593nwzx6vwa24k0wizb7la49yhqxwn73ipclxgxxi4dfdj01";
12 };
13
14 propagatedBuildInputs = [ executor naturalsort ];
15
16 meta = with lib; {
17 description = "Generic modularized configuration file manager";
18 homepage = https://github.com/xolox/python-update-dotdee;
19 license = licenses.mit;
20 maintainers = with maintainers; [ eyjhb ];
21 };
22}