5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
38 lines
703 B
Nix
38 lines
703 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|