10 buildPythonPackage rec {
11 pname = "marshmallow-enum";
14 src = fetchFromGitHub {
16 repo = "marshmallow_enum";
18 sha256 = "1ihrcmyfjabivg6hc44i59hnw5ijlg1byv3zs1rqxfynp8xr7398";
22 sed -i '/addopts/d' tox.ini
25 propagatedBuildInputs = [
27 ] ++ lib.optionals isPy27 [ enum34 ];
34 "test_custom_error_in_deserialize_by_name"
35 "test_custom_error_in_deserialize_by_value"
39 description = "Enum field for Marshmallow";
40 homepage = "https://github.com/justanr/marshmallow_enum";
41 license = licenses.mit;
42 maintainers = [ maintainers.costrouc ];