Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / rbtools / default.nix
blob57887196cbaee3aa488ea69bde93568fb660ee9e
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , isPy3k
5 , setuptools
6 , colorama
7 , six
8 , texttable
9 , tqdm
12 buildPythonPackage rec {
13   pname = "rbtools";
14   version = "1.0.2";
15   format = "setuptools";
17   disabled = !isPy3k;
19   src = fetchurl {
20     url = "https://downloads.reviewboard.org/releases/RBTools/${lib.versions.majorMinor version}/RBTools-${version}.tar.gz";
21     sha256 = "577c2f8bbf88f77bda84ee95af0310b59111c156f48a5aab56ca481e2f77eaf4";
22   };
24   propagatedBuildInputs = [ six texttable tqdm colorama setuptools ];
26   # The kgb test dependency is not in nixpkgs
27   doCheck = false;
29   meta = with lib; {
30     homepage = "https://www.reviewboard.org/docs/rbtools/dev/";
31     description = "RBTools is a set of command line tools for working with Review Board and RBCommons";
32     mainProgram = "rbt";
33     license = licenses.mit;
34     maintainers = with maintainers; [ domenkozar ];
35   };