blob: 57f498e3c13d9aa0fec7285407fc769968930df9 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
# tests
ipykernel,
nbconvert,
pytestCheckHook,
typing-extensions,
}:
buildPythonPackage rec {
pname = "wasabi";
version = "1.1.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-S7MAjwA4CdsMPii02vIJBuqHGiu0P5kUGX1UD08uCHg=";
};
nativeCheckInputs = [
ipykernel
nbconvert
typing-extensions
pytestCheckHook
];
pythonImportsCheck = [ "wasabi" ];
__darwinAllowLocalNetworking = true;
meta = {
description = "Lightweight console printing and formatting toolkit";
homepage = "https://github.com/ines/wasabi";
changelog = "https://github.com/ines/wasabi/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|