at 23.05-pre 483 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "tblib"; 5 version = "1.7.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "059bd77306ea7b419d4f76016aef6d7027cc8a0785579b5aad198803435f882c"; 10 }; 11 12 meta = with 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}