linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / update-dotdee / default.nix
blob1532fca78c4ce99d97446a5bb51f2b3bc05f4403
1 { lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }:
3 buildPythonPackage rec {
4   pname = "update-dotdee";
5   version = "6.0";
7   src = fetchFromGitHub {
8     owner = "xolox";
9     repo = "python-update-dotdee";
10     rev = version;
11     sha256 = "sha256-2k7FdgWM0ESHQb2za87yhXGaR/rbMYLVcv10QexUH1A=";
12   };
14   propagatedBuildInputs = [ executor naturalsort ];
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   };