mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
python3Packages.typing-inspection: 0.4.2 -> 0.4.3 (#551195)
This commit is contained in:
@@ -7,16 +7,16 @@
|
||||
typing-extensions,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "typing-inspection";
|
||||
version = "0.4.2";
|
||||
version = "0.4.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pydantic";
|
||||
repo = "typing-inspection";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-aGScO+FLEJ5IyI6hBqdsiKJRN7vEG36V5131nhVZEbc=";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-jNAMYV9mpUnClLOahQyLisBkOfELcmjKavKJgyxkQr4=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
@@ -31,17 +31,11 @@ buildPythonPackage rec {
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# broken by intentional 3.14.7 behavior change
|
||||
# reported upstream: https://github.com/pydantic/typing-inspection/issues/55
|
||||
"test_literal_values_unhashable_type"
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/pydantic/typing-inspection/blob/${src.tag}/HISTORY.md";
|
||||
changelog = "https://github.com/pydantic/typing-inspection/blob/${finalAttrs.src.tag}/HISTORY.md";
|
||||
description = "Runtime typing introspection tools";
|
||||
homepage = "https://github.com/pydantic/typing-inspection";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user