Commit 1c04fd26 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent 2cbb26cd
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -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";
  };
}