about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/marshmallow/default.nix
blob: 0deeb0e5386675ab0cbade98dc19ae986fcd3d46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, pytestCheckHook
, pytz
, simplejson
}:

buildPythonPackage rec {
  pname = "marshmallow";
  version = "3.11.1";
  disabled = pythonOlder "3.5";

  src = fetchFromGitHub {
    owner = "marshmallow-code";
    repo = pname;
    rev = version;
    sha256 = "1ypm142y3giaqydc7fkigm9r057yp2sd1ng5zr2x3w3wbbj5yfm6";
  };

  pythonImportsCheck = [
    "marshmallow"
  ];

  checkInputs = [
    pytestCheckHook
    pytz
    simplejson
  ];

  meta = with lib; {
    description = ''
      A lightweight library for converting complex objects to and from
      simple Python datatypes.
    '';
    homepage = "https://github.com/marshmallow-code/marshmallow";
    license = licenses.mit;
  };
}