Unverified Commit 1a4fd943 authored by Kerstin's avatar Kerstin Committed by GitHub
Browse files

canaille: 0.2.3 -> 0.2.4 (#509541)

parents 22dc1197 98825dcb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@ let
in
python.pkgs.buildPythonApplication rec {
  pname = "canaille";
  version = "0.2.3";
  version = "0.2.4";
  pyproject = true;

  src = fetchFromGitLab {
    owner = "yaal";
    repo = "canaille";
    tag = version;
    hash = "sha256-kBbkqoXyGO238EArwYyjO46Kk5SkfP31Dc51qglLmqQ=";
    hash = "sha256-iCiQvB+wYpm/Cns63kjo2wVGnSbcQHWo3UJvi0xJf50=";
  };

  build-system = with python.pkgs; [
+2 −2
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

buildPythonPackage rec {
  pname = "scim2-client";
  version = "0.7.3";
  version = "0.7.5";

  pyproject = true;

@@ -24,7 +24,7 @@ buildPythonPackage rec {
    owner = "python-scim";
    repo = "scim2-client";
    tag = version;
    hash = "sha256-jw8Dp/PekM0JrgxRkN+A896O2twkSDxQpsGsljJFdB0=";
    hash = "sha256-vySSYdCd7O7wDB3NDzGizhREwBJQdLfaXk6edJ1HqGE=";
  };

  postPatch = ''
+13 −3
Original line number Diff line number Diff line
@@ -5,11 +5,15 @@
  uv-build,
  pydantic,
  pytestCheckHook,
  django,
  fastapi,
  flask,
  httpx,
}:

buildPythonPackage (finalAttrs: {
  pname = "scim2-models";
  version = "0.6.6";
  version = "0.6.11";

  pyproject = true;

@@ -17,7 +21,7 @@ buildPythonPackage (finalAttrs: {
    owner = "python-scim";
    repo = "scim2-models";
    tag = finalAttrs.version;
    hash = "sha256-pYINB8avoYt1VUgvyDTXw3ejSBoZDFEQK0F4flTeyaY=";
    hash = "sha256-sqXygOutxdLBRJYC3nn78JFsngF2Tq6E0g91VKXQhZE=";
  };

  postPatch = ''
@@ -29,7 +33,13 @@ buildPythonPackage (finalAttrs: {

  dependencies = [ pydantic ] ++ pydantic.optional-dependencies.email;

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [
    pytestCheckHook
    django
    fastapi
    flask
    httpx
  ];

  pythonImportsCheck = [ "scim2_models" ];

+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "scim2-tester";
  version = "0.2.6";
  version = "0.2.8";

  pyproject = true;

@@ -21,7 +21,7 @@ buildPythonPackage rec {
    owner = "python-scim";
    repo = "scim2-tester";
    tag = version;
    hash = "sha256-PoaY3gPSm+J/C1ad81Dmn7zrbf00pies8CLmLdV+gus=";
    hash = "sha256-mWlIZC7080YABBWT2oNDVyrV5YrRzkzCUSZZBK7NNVM=";
  };

  postPatch = ''