pythonPackages.update-dotdee: init at 5.0

This commit is contained in:
eyjhbb@gmail.com
2019-07-23 16:56:25 +02:00
parent 8238ddfbf8
commit b0b81b0c18
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }:
buildPythonPackage rec {
pname = "update-dotdee";
version = "5.0";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-update-dotdee";
rev = version;
sha256 = "1h3m593nwzx6vwa24k0wizb7la49yhqxwn73ipclxgxxi4dfdj01";
};
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 ];
};
}