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