python312Packages.wadler-lindig: 0.1.4 -> 0.1.5 (#400435)
This commit is contained in:
@@ -56,10 +56,16 @@ buildPythonPackage rec {
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
# SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
|
||||
"test_filter"
|
||||
];
|
||||
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"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "equinox" ];
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user