Files
nixpkgs/pkgs/development/python-modules/tblib/default.nix
Martin Weinelt 000ca5b3f0 python3Packages.tblib: 3.0.0 -> 3.1.0
This commit was automatically generated using update-python-libraries.
2025-04-03 23:13:09 +02:00

29 lines
565 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build-system
setuptools,
}:
buildPythonPackage rec {
pname = "tblib";
version = "3.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-BkBMLJ8H9m/uLX1q1DrMxG+cM2FxTZuEJuf0fllc1lI=";
};
nativeBuildInputs = [ setuptools ];
meta = with lib; {
description = "Traceback fiddling library. Allows you to pickle tracebacks";
homepage = "https://github.com/ionelmc/python-tblib";
license = licenses.bsd2;
maintainers = with maintainers; [ teh ];
};
}