1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5
6 # build-system
7 setuptools,
8}:
9
10buildPythonPackage rec {
11 pname = "tblib";
12 version = "3.1.0";
13 pyproject = true;
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-BkBMLJ8H9m/uLX1q1DrMxG+cM2FxTZuEJuf0fllc1lI=";
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}