Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / marshmallow / default.nix
blobafc378d4aaa8894986b26a96691af2b51b59e6d6
1 { lib, buildPythonPackage, fetchPypi,
2   dateutil, simplejson, isPy27
3 }:
5 buildPythonPackage rec {
6   pname = "marshmallow";
7   version = "3.9.1";
8   disabled = isPy27;
10   meta = {
11     homepage = "https://github.com/marshmallow-code/marshmallow";
12     description = ''
13       A lightweight library for converting complex objects to and from
14       simple Python datatypes.
15     '';
16     license = lib.licenses.mit;
17   };
19   src = fetchPypi {
20     inherit pname version;
21     sha256 = "73facc37462dfc0b27f571bdaffbef7709e19f7a616beb3802ea425b07843f4e";
22   };
24   propagatedBuildInputs = [ dateutil simplejson ];
26   doCheck = false;