10 buildPythonPackage rec {
11 pname = "marshmallow-oneofschema";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "marshmallow-code";
19 repo = "marshmallow-oneofschema";
20 rev = "refs/tags/${version}";
21 hash = "sha256-HXuyUxU8bT5arpUzmgv7m+X2fNT0qHY8S8Rz6klOGiA=";
28 propagatedBuildInputs = [
36 pythonImportsCheck = [
37 "marshmallow_oneofschema"
41 description = "Marshmallow library extension that allows schema (de)multiplexing";
42 changelog = "https://github.com/marshmallow-code/marshmallow-oneofschema/blob/${version}/CHANGELOG.rst";
43 homepage = "https://github.com/marshmallow-code/marshmallow-oneofschema";
44 license = licenses.mit;
45 maintainers = with maintainers; [ ivan-tkatchev ];