Merge pull request #165262 from jyooru/update/python3Packages.dataclasses-json

python3Packages.dataclasses-json: 0.5.6 -> 0.5.7
This commit is contained in:
Fabian Affolter 2022-03-22 14:10:56 +01:00 committed by GitHub
commit 99e963afde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,13 +10,13 @@
buildPythonPackage rec {
pname = "dataclasses-json";
version = "0.5.6";
version = "0.5.7";
src = fetchFromGitHub {
owner = "lidatong";
repo = pname;
rev = "v${version}";
sha256 = "09253p0zjqfaqap7jgfgjl1jswwnz7mb6x7dqix09id92mnb89mf";
sha256 = "1xv9br6mm5pcwfy10ykbc1c0n83fqyj1pa81z272kqww7wpkkp6j";
};
propagatedBuildInputs = [
@ -30,11 +30,6 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# AssertionError: Type annotations check failed
"test_type_hints"
];
pythonImportsCheck = [ "dataclasses_json" ];
meta = with lib; {