1{ lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }: 2 3buildPythonPackage rec { 4 pname = "update-dotdee"; 5 version = "6.0"; 6 7 src = fetchFromGitHub { 8 owner = "xolox"; 9 repo = "python-update-dotdee"; 10 rev = version; 11 sha256 = "sha256-2k7FdgWM0ESHQb2za87yhXGaR/rbMYLVcv10QexUH1A="; 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}