python3Packages.wat: init at 0.1.2

This commit is contained in:
Philipp Arras 2024-07-26 17:33:51 +02:00
parent e31b675798
commit b09e79ff25
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
nuclear,
pydantic,
setuptools,
}:
buildPythonPackage rec {
pname = "wat";
version = "0.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "igrek51";
repo = "wat";
rev = version;
hash = "sha256-ibbWM2L/GoJVg8RxtsBSBn/qA+KIkC5+wq5YH6mtiUs=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
nuclear
pydantic
];
pythonImportsCheck = [ "wat" ];
meta = with lib; {
homepage = "https://igrek51.github.io/wat/";
description = "Deep inspection of python objects";
license = licenses.mit;
maintainers = with maintainers; [ parras ];
};
}

View File

@ -17185,6 +17185,8 @@ self: super: with self; {
wasmerPackages = pkgs.recurseIntoAttrs (callPackage ../development/python-modules/wasmer { });
inherit (self.wasmerPackages) wasmer wasmer-compiler-cranelift wasmer-compiler-llvm wasmer-compiler-singlepass;
wat = callPackage ../development/python-modules/wat { };
watchdog = callPackage ../development/python-modules/watchdog {
inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;
};