Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 720 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchurl 4, nose 5, six 6, isPy3k 7}: 8 9buildPythonPackage rec { 10 pname = "rbtools"; 11 version = "0.7.2"; 12 disabled = isPy3k; 13 14 src = fetchurl { 15 url = "http://downloads.reviewboard.org/releases/RBTools/0.7/RBTools-0.7.2.tar.gz"; 16 sha256 = "1ng8l8cx81cz23ls7fq9wz4ijs0zbbaqh4kj0mj6plzcqcf8na4i"; 17 }; 18 19 checkInputs = [ nose ]; 20 propagatedBuildInputs = [ six ]; 21 22 checkPhase = "LC_ALL=C nosetests"; 23 24 meta = with stdenv.lib; { 25 homepage = https://www.reviewboard.org/docs/rbtools/dev/; 26 description = "RBTools is a set of command line tools for working with Review Board and RBCommons"; 27 license = licenses.mit; 28 maintainers = with maintainers; [ domenkozar ]; 29 }; 30 31}