nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "crashtest";
9 version = "0.4.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-gNex8xbr+9Qp9kgHbWJ1yHe6MLpIl53kGRcUp1Jm8M4=";
15 };
16
17 # has tests, but only on GitHub, however the pyproject build fails for me
18 pythonImportsCheck = [
19 "crashtest.frame"
20 "crashtest.inspector"
21 ];
22
23 meta = {
24 homepage = "https://github.com/sdispater/crashtest";
25 description = "Manage Python errors with ease";
26 license = lib.licenses.mit;
27 maintainers = [ ];
28 };
29}