ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
53 lines
1 KiB
Nix
53 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
hypothesis,
|
|
poetry-core,
|
|
pydantic,
|
|
pytest,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hypothesis-auto";
|
|
version = "1.1.5";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
pname = "hypothesis_auto";
|
|
inherit version;
|
|
hash = "sha256-U0vcOB9jXmUV5v2IwybVu2arY1FpPnKkP7m2kbD1kRw=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"hypothesis"
|
|
"pydantic"
|
|
];
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
hypothesis
|
|
pydantic
|
|
];
|
|
|
|
optional-dependencies = {
|
|
pytest = [ pytest ];
|
|
};
|
|
|
|
pythonImportsCheck = [ "hypothesis_auto" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Enables fully automatic tests for type annotated functions";
|
|
homepage = "https://github.com/timothycrosley/hypothesis-auto/";
|
|
changelog = "https://github.com/timothycrosley/hypothesis-auto/blob/master/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|