mu-repo: 1.8.1 → 1.8.2
This commit is contained in:
parent
8157e3d89f
commit
d49663068c
1 changed files with 9 additions and 4 deletions
|
@ -1,25 +1,30 @@
|
||||||
{ lib, fetchFromGitHub, buildPythonApplication, pytestCheckHook, git }:
|
{ lib, fetchFromGitHub, buildPythonApplication, pytestCheckHook, git, testers, mu-repo }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "mu-repo";
|
pname = "mu-repo";
|
||||||
version = "1.8.1";
|
version = "1.8.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "fabioz";
|
owner = "fabioz";
|
||||||
repo = pname;
|
repo = "mu-repo";
|
||||||
rev = "mu_repo_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
rev = "mu_repo_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
||||||
sha256 = "0mmjdkvmdlsndi2q56ybxyz2988ppxsbbr1g54nzzkkvab2bc2na";
|
hash = "sha256-COc7hbu72eA+ikZQkz6zXtFyaa/AKhoF+Zvsr6ZVOuY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ git ];
|
propagatedBuildInputs = [ git ];
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook git ];
|
checkInputs = [ pytestCheckHook git ];
|
||||||
|
|
||||||
|
passthru.tests.version = testers.testVersion {
|
||||||
|
package = mu-repo;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Tool to help in dealing with multiple git repositories";
|
description = "Tool to help in dealing with multiple git repositories";
|
||||||
homepage = "http://fabioz.github.io/mu-repo/";
|
homepage = "http://fabioz.github.io/mu-repo/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ sikmir ];
|
maintainers = with maintainers; [ sikmir ];
|
||||||
|
mainProgram = "mu";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue