Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / tblib / default.nix
blob0441fb2894fd2ab7f68015c196c7b142cccfde14
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "tblib";
5   version = "2.0.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-pt8w8nLAi/i+ZuB3X62GIAXZUKa4RJuU98eIcx1w7Nc=";
10   };
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   };