Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 33 lines 609 B view raw
1{ lib 2, buildPythonPackage 3, docutils 4, fetchFromGitHub 5, isPy27 6, nose 7}: 8 9buildPythonPackage rec { 10 version = "0.9.4"; 11 pname = "python_toolbox"; 12 disabled = isPy27; 13 14 src = fetchFromGitHub { 15 owner = "cool-RR"; 16 repo = pname; 17 rev = version; 18 sha256 = "1qy2sfqfrkgxixmd22v5lkrdykdfiymsd2s3xa7ndlvg084cgj6r"; 19 }; 20 21 checkInputs = [ 22 docutils 23 nose 24 ]; 25 26 meta = with lib; { 27 description = "Tools for testing PySnooper"; 28 homepage = https://github.com/cool-RR/python_toolbox; 29 license = licenses.mit; 30 maintainers = with maintainers; [ seqizz ]; 31 broken = true; 32 }; 33}