159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
38 lines
703 B
Nix
38 lines
703 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
nuclear,
|
|
pydantic,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wat";
|
|
version = "0.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "igrek51";
|
|
repo = "wat";
|
|
rev = version;
|
|
hash = "sha256-WCMMj4KtfWOp6LsS4XHD/M/iepstVasHknEvEUTMMM8=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|