python311Packages.pycfmodel: don't pin pydantic

This commit is contained in:
Robert Schütz
2024-02-09 21:57:56 -08:00
parent 72d13f6fdc
commit 71c2705c9b
@@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, httpx
, pydantic_1
, pydantic
, pytestCheckHook
, pythonOlder
, setuptools
@@ -27,7 +27,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
pydantic_1
pydantic
];
nativeCheckInputs = [
@@ -54,5 +54,6 @@ buildPythonPackage rec {
changelog = "https://github.com/Skyscanner/pycfmodel/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
broken = versionAtLeast pydantic.version "2";
};
}