2021-01-25 00:26:54 -08:00
|
|
|
{ lib, python3Packages
|
2020-04-19 01:48:42 -07:00
|
|
|
, git, breezy, subversion }:
|
2017-09-18 06:26:08 -07:00
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "vcstool";
|
2020-11-24 22:31:26 -08:00
|
|
|
version = "0.2.15";
|
2017-09-18 06:26:08 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-24 22:31:26 -08:00
|
|
|
sha256 = "b1fce6fcef7b117b245a72dc8658a128635749d01dc7e9d1316490f89f9c2fde";
|
2017-09-18 06:26:08 -07:00
|
|
|
};
|
|
|
|
|
2020-03-30 22:39:37 -07:00
|
|
|
propagatedBuildInputs = [ pyyaml setuptools ];
|
2017-09-18 06:26:08 -07:00
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
makeWrapperArgs = ["--prefix" "PATH" ":" (lib.makeBinPath [ git breezy subversion ])];
|
2017-09-18 06:26:08 -07:00
|
|
|
|
|
|
|
doCheck = false; # requires network
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-09-18 06:26:08 -07:00
|
|
|
description = "Provides a command line tool to invoke vcs commands on multiple repositories";
|
2020-03-30 21:54:45 -07:00
|
|
|
homepage = "https://github.com/dirk-thomas/vcstool";
|
2017-09-18 06:26:08 -07:00
|
|
|
license = licenses.asl20;
|
2017-12-05 14:20:11 -08:00
|
|
|
maintainers = with maintainers; [ sivteck ];
|
2017-09-18 06:26:08 -07:00
|
|
|
};
|
|
|
|
}
|