python3Packages.dowhen: init at 0.1.0 (#421315)

This commit is contained in:
Aleksana
2025-07-04 11:06:50 +08:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,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 ];
};
}
+2
View File
@@ -4234,6 +4234,8 @@ self: super: with self; {
doubleratchet = callPackage ../development/python-modules/doubleratchet { };
dowhen = callPackage ../development/python-modules/dowhen { };
downloader-cli = callPackage ../development/python-modules/downloader-cli { };
doxmlparser = callPackage ../development/tools/documentation/doxygen/doxmlparser.nix { };