2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv, python3Packages
|
2020-05-29 06:06:01 +00:00
|
|
|
, git, breezy, subversion }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "vcstool";
|
2020-11-24 20:58:05 +00:00
|
|
|
version = "0.2.14";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-24 20:58:05 +00:00
|
|
|
sha256 = "c51300f074ea9c5da162ed8f3bc354c3fd69564895fee90abf1e1bd525919f2b";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyyaml setuptools ];
|
|
|
|
|
2020-05-29 06:06:01 +00:00
|
|
|
makeWrapperArgs = ["--prefix" "PATH" ":" (stdenv.lib.makeBinPath [ git breezy subversion ])];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = false; # requires network
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Provides a command line tool to invoke vcs commands on multiple repositories";
|
|
|
|
homepage = "https://github.com/dirk-thomas/vcstool";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ sivteck ];
|
|
|
|
};
|
|
|
|
}
|