Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 551 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, rednose 5, six 6, mock 7, isPyPy 8}: 9 10buildPythonPackage rec { 11 pname = "sure"; 12 version = "1.4.11"; 13 disabled = isPyPy; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "3c8d5271fb18e2c69e2613af1ad400d8df090f1456081635bd3171847303cdaa"; 18 }; 19 20 buildInputs = [ rednose ]; 21 propagatedBuildInputs = [ six mock ]; 22 23 meta = with stdenv.lib; { 24 description = "Utility belt for automated testing"; 25 homepage = "https://sure.readthedocs.io/en/latest/"; 26 license = licenses.gpl3Plus; 27 }; 28 29}