Unverified Commit beb11d38 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python312Packages.wadler-lindig: 0.1.4 -> 0.1.5 (#400435)

parents c11863f1 41dfd84a
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -56,7 +56,13 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
  disabledTests =
    [
      # AssertionError: assert '<function te...n.<locals>.f>' == '<function f>'
      # https://github.com/patrick-kidger/equinox/issues/1008
      "test_function"
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
      # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
      "test_filter"
    ];
+3 −3
Original line number Diff line number Diff line
@@ -13,14 +13,14 @@

buildPythonPackage rec {
  pname = "wadler-lindig";
  version = "0.1.4";
  version = "0.1.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "patrick-kidger";
    repo = "wadler_lindig";
    tag = "v${version}";
    hash = "sha256-ykRyJ5kCxYb3jBb8/8ogGjpgXMcb/mvvvHaSy9fecxA=";
    hash = "sha256-owqtKooc7b7RRJglDC5K5M88pxAepHRr+lZCsOOzw7E=";
  };

  build-system = [
@@ -37,7 +37,7 @@ buildPythonPackage rec {
  ];

  meta = {
    description = "A Wadler--Lindig pretty printer for Python";
    description = "Wadler--Lindig pretty printer for Python";
    homepage = "https://github.com/patrick-kidger/wadler_lindig";
    changelog = "https://github.com/patrick-kidger/wadler_lindig/releases/tag/v${version}";
    license = lib.licenses.asl20;