depot/third_party/nixpkgs/pkgs/development/python-modules/marshmallow-oneofschema/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

40 lines
1,021 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
marshmallow,
pytestCheckHook,
pythonOlder,
flit-core,
}:
buildPythonPackage rec {
pname = "marshmallow-oneofschema";
version = "3.1.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "marshmallow-code";
repo = "marshmallow-oneofschema";
rev = "refs/tags/${version}";
hash = "sha256-HXuyUxU8bT5arpUzmgv7m+X2fNT0qHY8S8Rz6klOGiA=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [ marshmallow ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "marshmallow_oneofschema" ];
meta = with lib; {
description = "Marshmallow library extension that allows schema (de)multiplexing";
changelog = "https://github.com/marshmallow-code/marshmallow-oneofschema/blob/${version}/CHANGELOG.rst";
homepage = "https://github.com/marshmallow-code/marshmallow-oneofschema";
license = licenses.mit;
maintainers = with maintainers; [ ivan-tkatchev ];
};
}