evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / better-exceptions / default.nix
blob622292c9bf408aef8e3467ff6ba612f9320891da
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "better-exceptions";
10   version = "0.3.3";
11   pyproject = true;
13   src = fetchPypi {
14     pname = "better_exceptions";
15     inherit version;
16     hash = "sha256-5Oa8GERNXwTm6JSxA4Hl6SHT1UQkBBgWLH21fp6zRTs=";
17   };
19   build-system = [ setuptools ];
21   pythonImportsCheck = [ "better_exceptions" ];
23   # As noted by @WolfangAukang, some check files need to be disabled because of various errors, same with some tests.
24   # After disabling and running the build, no tests are collected.
25   doCheck = false;
27   meta = {
28     description = "Pretty and more helpful exceptions in Python, automatically";
29     homepage = "https://github.com/qix-/better-exceptions";
30     license = lib.licenses.mit;
31     maintainers = [ lib.maintainers.alex-nt ];
32   };