Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 479 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "tblib"; 5 version = "1.4.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1k9vmw0kcbkij9lbz80imkwkhq24vgrqf1i95kv8y5aaarjda6mx"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "Traceback fiddling library. Allows you to pickle tracebacks."; 14 homepage = https://github.com/ionelmc/python-tblib; 15 license = licenses.bsd2; 16 maintainers = with maintainers; [ teh ]; 17 }; 18}