Fabian Affolter 2024-02-09 08:43:16 +01:00
parent 2cbb26cdbb
commit 1c04fd269f

View File

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, httpx
, pydantic
, pydantic_1
, pytestCheckHook
, pythonOlder
, setuptools
@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "pycfmodel";
version = "0.21.2";
version = "0.22.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "Skyscanner";
repo = "pycfmodel";
rev = "refs/tags/v${version}";
hash = "sha256-nQIZ9fwk8CdqJawYsU5qiu9xxhi9X0IxhlPohHUDTL8=";
hash = "sha256-NLi94W99LhrBXNFItMfJczV9EZlgvmvkavrfDQJs0YU=";
};
nativeBuildInputs = [
@ -27,7 +27,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
pydantic
pydantic_1
];
nativeCheckInputs = [
@ -54,6 +54,5 @@ buildPythonPackage rec {
changelog = "https://github.com/Skyscanner/pycfmodel/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
broken = versionAtLeast pydantic.version "2";
};
}