Skip to content

Commit

Permalink
"fixing per PR requests"
Browse files Browse the repository at this point in the history
  • Loading branch information
drmikecrowe committed Jul 18, 2024
1 parent edd28a2 commit 3523dcf
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/development/python-modules/backtrace/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
colorama,
pytest,
}:
buildPythonPackage rec {
pname = "backtrace";
version = "0.2.1+";
src = fetchFromGitHub {
owner = "nir0s";
repo = "backtrace";
rev = "a1f75c956f669a6175088693802d5392e6bd7e51";
sha256 = "1i3xj04zxz9vi57gbkmnnyh9cypf3bm966ic685s162p1xhnz2qp";
};

prePatch = ''
touch LICENSE
'';

propagatedBuildInputs = [colorama];

buildInputs = [pytest];

meta = with lib; {
homepage = "https://github.com/nir0s/backtrace";
license = licenses.asl20;
maintainers = [maintainers.drmikecrowe];
description = "Makes Python tracebacks human friendly";
};
}

0 comments on commit 3523dcf

Please sign in to comment.