mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python312Packages.hypothesis-auto: relax dependencies
This commit is contained in:
parent
97f0c067f3
commit
d9984214d8
@ -5,7 +5,6 @@
|
||||
hypothesis,
|
||||
poetry-core,
|
||||
pydantic,
|
||||
pytest,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
}:
|
||||
@ -13,7 +12,7 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "hypothesis-auto";
|
||||
version = "1.1.5";
|
||||
format = "pyproject";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
@ -23,12 +22,16 @@ buildPythonPackage rec {
|
||||
hash = "sha256-U0vcOB9jXmUV5v2IwybVu2arY1FpPnKkP7m2kbD1kRw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ poetry-core ];
|
||||
pythonRelaxDeps = [
|
||||
"hypothesis"
|
||||
"pydantic"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pydantic
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [
|
||||
hypothesis
|
||||
pytest
|
||||
pydantic
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "hypothesis_auto" ];
|
||||
@ -38,6 +41,7 @@ buildPythonPackage rec {
|
||||
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 = [ ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user