mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
605 B
Nix
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 ];
|
|
};
|
|
}
|