nixpkgs/pkgs/development/python-modules/update-dotdee/default.nix
2021-03-10 10:28:17 -08:00

23 lines
605 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }:
buildPythonPackage rec {
pname = "update-dotdee";
version = "6.0";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-update-dotdee";
rev = version;
sha256 = "sha256-2k7FdgWM0ESHQb2za87yhXGaR/rbMYLVcv10QexUH1A=";
};
propagatedBuildInputs = [ executor naturalsort ];
meta = with lib; {
description = "Generic modularized configuration file manager";
homepage = "https://github.com/xolox/python-update-dotdee";
license = licenses.mit;
maintainers = with maintainers; [ eyjhb ];
};
}