biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / vcstool / default.nix
blob0350c7296fde806f0ef2622b993c71a1a46ff4c8
1 { lib, python3Packages, fetchPypi
2 , git, breezy, subversion }:
4 with python3Packages;
6 buildPythonApplication rec {
7   pname = "vcstool";
8   version = "0.3.0";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "04b3a963e15386660f139e5b95d293e43e3cb414e3b13e14ee36f5223032ee2c";
13   };
15   propagatedBuildInputs = [ pyyaml setuptools ];
17   makeWrapperArgs = ["--prefix" "PATH" ":" (lib.makeBinPath [ git breezy subversion ])];
19   doCheck = false; # requires network
21   meta = with lib; {
22     description = "Provides a command line tool to invoke vcs commands on multiple repositories";
23     homepage = "https://github.com/dirk-thomas/vcstool";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ sivteck ];
26   };