blob: f6892f76cd1ec5e8744843af060b1722e89783b9 (
plain)
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
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
flit,
}:
buildPythonPackage rec {
pname = "tidyexc";
version = "0.10.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "1gl1jmihafawg7hvnn4xb20vd2x5qpvca0m1wr2gk0m2jj42yiq6";
};
nativeBuildInputs = [ flit ];
pythonImportsCheck = [ "tidyexc" ];
meta = {
description = "Raise rich, helpful exceptions";
homepage = "https://github.com/kalekundert/tidyexc";
changelog = "https://github.com/kalekundert/tidyexc/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jpetrucciani ];
};
}
|