python310Packages.mashumaro: init at 3.8.1

This commit is contained in:
Theodore Ni 2023-06-27 17:47:57 -07:00
parent 0dd3a05f36
commit ce1d041f0c
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474
2 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,64 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, typing-extensions
, orjson
, msgpack
, pyyaml
, tomli-w
, tomli
, pytestCheckHook
, ciso8601
, pendulum
, pytest-mock
}:
buildPythonPackage rec {
pname = "mashumaro";
version = "3.8.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Fatal1ty";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-WDKohmcdVlQR/6AMSISN0y6UQx4tmOf1fANCPLRYiqI=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
typing-extensions
];
passthru.optional-dependencies = {
orjson = [ orjson ];
msgpack = [ msgpack ];
yaml = [ pyyaml ];
toml = [ tomli-w ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
};
nativeCheckInputs = [
ciso8601
pendulum
pytest-mock
pytestCheckHook
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
pythonImportsCheck = [
"mashumaro"
];
meta = with lib; {
description = "Fast and well tested serialization library on top of dataclasses";
homepage = "https://github.com/Fatal1ty/mashumaro";
changelog = "https://github.com/Fatal1ty/mashumaro/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ tjni ];
};
}

View file

@ -6113,6 +6113,8 @@ self: super: with self; {
marshmallow-sqlalchemy = callPackage ../development/python-modules/marshmallow-sqlalchemy { };
mashumaro = callPackage ../development/python-modules/mashumaro { };
mask-rcnn = callPackage ../development/python-modules/mask-rcnn { };
masky = callPackage ../development/python-modules/masky { };