ch9344: 2.0 -> 0-unstable-2024-11-15 (#354536)
[NixPkgs.git] / pkgs / development / python-modules / tblib / default.nix
blob86a036c47d5daa1f83fb29089798ba54fdfe5375
2   lib,
3   buildPythonPackage,
4   fetchPypi,
6   # build-system
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "tblib";
12   version = "3.0.0";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-k2InkKCingTwNGRY+s4eFE3E0y9JNxTGw9/4Kkrbd+Y=";
18   };
20   nativeBuildInputs = [ setuptools ];
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   };