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";
|
2021-09-23 09:16:40 +01:00
|
|
|
version = "0.3.0";
|
2017-09-18 14:26:08 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-23 09:16:40 +01:00
|
|
|
sha256 = "04b3a963e15386660f139e5b95d293e43e3cb414e3b13e14ee36f5223032ee2c";
|
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
|
|
|
};
|
|
|
|
}
|