depot/third_party/nixpkgs/pkgs/development/python-modules/tblib/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

18 lines
493 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "tblib";
version = "1.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "059bd77306ea7b419d4f76016aef6d7027cc8a0785579b5aad198803435f882c";
};
meta = with stdenv.lib; {
description = "Traceback fiddling library. Allows you to pickle tracebacks.";
homepage = "https://github.com/ionelmc/python-tblib";
license = licenses.bsd2;
maintainers = with maintainers; [ teh ];
};
}