Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / crashtest / default.nix
blob296c80eae54afd6684054a1fb74eb125c580773c
1 { lib, buildPythonPackage, fetchPypi, pythonAtLeast }:
3 buildPythonPackage rec {
4   pname = "crashtest";
5   version = "0.4.1";
6   format = "setuptools";
7   disabled = !(pythonAtLeast "3.6");
9   src = fetchPypi {
10     inherit pname version;
11     hash = "sha256-gNex8xbr+9Qp9kgHbWJ1yHe6MLpIl53kGRcUp1Jm8M4=";
12   };
14   # has tests, but only on GitHub, however the pyproject build fails for me
15   pythonImportsCheck = [
16     "crashtest.frame"
17     "crashtest.inspector"
18   ];
20   meta = with lib; {
21     homepage = "https://github.com/sdispater/crashtest";
22     description = "Manage Python errors with ease";
23     license = licenses.mit;
24     maintainers = with maintainers; [ ];
25   };