python.pkgs.faulthandler: init at 2.6
This commit is contained in:
committed by
Robert Helgesson
parent
1130f1eaf6
commit
9e2f54a30c
19
pkgs/development/python-modules/faulthandler/default.nix
Normal file
19
pkgs/development/python-modules/faulthandler/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "faulthandler";
|
||||
version = "2.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0zywq3jaznddvqc3hnfrlv24wmpyq4xgajk9xhv6578qw1rpfj2r";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Dump the Python traceback";
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
maintainers = with stdenv.lib.maintainers; [ sauyon ];
|
||||
homepage = http://faulthandler.readthedocs.io/;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user