at 24.11-pre 566 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 6 # build-system 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 pname = "tblib"; 12 version = "3.0.0"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-k2InkKCingTwNGRY+s4eFE3E0y9JNxTGw9/4Kkrbd+Y="; 18 }; 19 20 nativeBuildInputs = [ setuptools ]; 21 22 meta = with lib; { 23 description = "Traceback fiddling library. Allows you to pickle tracebacks."; 24 homepage = "https://github.com/ionelmc/python-tblib"; 25 license = licenses.bsd2; 26 maintainers = with maintainers; [ teh ]; 27 }; 28}