pythonPackages.sentry-sdk: init at 0.8.0
This commit is contained in:
parent
3c1a747ff1
commit
3221fc708b
20
pkgs/development/python-modules/sentry-sdk/default.nix
Normal file
20
pkgs/development/python-modules/sentry-sdk/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, urllib3, certifi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sentry-sdk";
|
||||
version = "0.8.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f5819df450d7b0696be69a0c6d70a09e4890a3844ee8ccb7a461794135bd5965";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ urllib3 certifi ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/getsentry/sentry-python";
|
||||
description = "New Python SDK for Sentry.io";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
};
|
||||
}
|
@ -890,6 +890,8 @@ in {
|
||||
|
||||
selectors2 = callPackage ../development/python-modules/selectors2 { };
|
||||
|
||||
sentry-sdk = callPackage ../development/python-modules/sentry-sdk {};
|
||||
|
||||
sepaxml = callPackage ../development/python-modules/sepaxml { };
|
||||
|
||||
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
|
||||
|
Loading…
Reference in New Issue
Block a user