blob: ad5ef9d6d278a60ff5c0eb11676486d87723236d (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
nix-update-script,
}:
buildPythonPackage rec {
pname = "dowhen";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "gaogaotiantian";
repo = "dowhen";
tag = version;
hash = "sha256-7eoNe9SvE39J4mwIOxvbU1oh/L7tr/QM1uuBDqWtQu0=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "dowhen" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Intuitive and low-overhead instrumentation tool for Python";
homepage = "https://github.com/gaogaotiantian/dowhen";
changelog = "https://github.com/gaogaotiantian/dowhen/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ moraxyc ];
};
}
|