Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 21 lines 591 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, nose }: 2 3buildPythonPackage rec { 4 pname = "proboscis"; 5 version = "1.2.6.0"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238"; 11 }; 12 13 propagatedBuildInputs = [ nose ]; 14 doCheck = false; 15 16 meta = with stdenv.lib; { 17 description = "A Python test framework that extends Python's built-in unittest module and Nose with features from TestNG"; 18 homepage = https://pypi.python.org/pypi/proboscis; 19 license = licenses.asl20; 20 }; 21}