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