My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/marshmallow-oneofschema/default.nix

23 lines
664 B

{ lib, buildPythonPackage, fetchPypi, marshmallow, setuptools }:
buildPythonPackage rec {
pname = "marshmallow-oneofschema";
version = "3.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "62cd2099b29188c92493c2940ee79d1bf2f2619a71721664e5a98ec2faa58237";
};
propagatedBuildInputs = [ marshmallow setuptools ];
pythonImportsCheck = [ "marshmallow_oneofschema" ];
meta = with lib; {
homepage = "https://github.com/marshmallow-code/marshmallow-oneofschema";
description = "Marshmallow library extension that allows schema (de)multiplexing";
license = licenses.mit;
maintainers = [ maintainers.ivan-tkatchev ];
};
}