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