about summary refs log tree commit diff
path: root/pkgs/development/python-modules/crashtest/default.nix
blob: da01d77cd07255024073dcaff81dc9fb81276044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchPypi, pythonAtLeast }:

buildPythonPackage rec {
  pname = "crashtest";
  version = "0.4.0";
  disabled = !(pythonAtLeast "3.6");

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-1imwDx1OecMWkJ9Ot2O7yym1ENZfveE2Whzrk6t/pMg=";
  };

  # has tests, but only on GitHub, however the pyproject build fails for me
  pythonImportsCheck = [
    "crashtest.frame"
    "crashtest.inspector"
  ];

  meta = with lib; {
    homepage = "https://github.com/sdispater/crashtest";
    description = "Manage Python errors with ease";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}