Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, python3Packages, fetchPypi 2, git, breezy, subversion }: 3 4with python3Packages; 5 6buildPythonApplication rec { 7 pname = "vcstool"; 8 version = "0.3.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "04b3a963e15386660f139e5b95d293e43e3cb414e3b13e14ee36f5223032ee2c"; 13 }; 14 15 propagatedBuildInputs = [ pyyaml setuptools ]; 16 17 makeWrapperArgs = ["--prefix" "PATH" ":" (lib.makeBinPath [ git breezy subversion ])]; 18 19 doCheck = false; # requires network 20 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 }; 27}