python311Packages.dirty-equals: run tests in passthru.tests

to escape infinite recursion with pydantic.
This commit is contained in:
Martin Weinelt
2023-09-27 15:34:41 +02:00
parent c81eb0f330
commit 580cb8df0a
@@ -9,43 +9,48 @@
, pytz
}:
buildPythonPackage rec {
pname = "dirty-equals";
version = "0.7.0";
format = "pyproject";
let
dirty-equals = buildPythonPackage rec {
pname = "dirty-equals";
version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "samuelcolvin";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-ShbkPGj1whOQ11bFLUSTfvVEVlvc3JUzRDICbBohgMM=";
src = fetchFromGitHub {
owner = "samuelcolvin";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-ShbkPGj1whOQ11bFLUSTfvVEVlvc3JUzRDICbBohgMM=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
pytz
];
doCheck = false;
passthru.tests.pytest = dirty-equals.overrideAttrs { doCheck = true; };
nativeCheckInputs = [
pydantic
pytest-examples
pytestCheckHook
];
pythonImportsCheck = [
"dirty_equals"
];
meta = with lib; {
description = "Module for doing dirty (but extremely useful) things with equals";
homepage = "https://github.com/samuelcolvin/dirty-equals";
changelog = "https://github.com/samuelcolvin/dirty-equals/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
pytz
];
nativeCheckInputs = [
pydantic
pytest-examples
pytestCheckHook
];
pythonImportsCheck = [
"dirty_equals"
];
meta = with lib; {
description = "Module for doing dirty (but extremely useful) things with equals";
homepage = "https://github.com/samuelcolvin/dirty-equals";
changelog = "https://github.com/samuelcolvin/dirty-equals/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
in dirty-equals