From 9bac0fac14835bc0c6abc3ae59f0d2988e0b0e69 Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Tue, 1 Jul 2025 02:43:17 +0800 Subject: [PATCH] python3Packages.dowhen: init at 0.1.0 --- .../python-modules/dowhen/default.nix | 37 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/python-modules/dowhen/default.nix diff --git a/pkgs/development/python-modules/dowhen/default.nix b/pkgs/development/python-modules/dowhen/default.nix new file mode 100644 index 000000000000..ad5ef9d6d278 --- /dev/null +++ b/pkgs/development/python-modules/dowhen/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5d3262b216a4..fe7b29b35e6d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4232,6 +4232,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 { };