summary refs log tree commit diff
path: root/pkgs/development/python-modules/dill/default.nix
blob: ac574174278126ef4ac737ec4ea2ee73f1e2bd16 (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
41
42
43
44
45
46
47
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "dill";
  version = "0.3.4";
  doCheck = !isPy27;

  src = fetchFromGitHub {
    owner = "uqfoundation";
    repo = pname;
    rev = "${pname}-${version}";
    sha256 = "0x702gh50wb3n820p2p9w49cn4a354y207pllwc7snfxprv6hypm";
  };

  checkInputs = [
    pytestCheckHook
  ];

  # Tests seem to fail because of import pathing and referencing items/classes in modules.
  # Seems to be a Nix/pathing related issue, not the codebase, so disabling failing tests.
  disabledTestPaths = [
    "tests/test_diff.py"
    "tests/test_module.py"
    "tests/test_objects.py"
  ];

  disabledTests = [
    "test_class_objects"
    "test_method_decorator"
    "test_importable"
    "test_the_rest"
  ];

  pythonImportsCheck = [ "dill" ];

  meta = with lib; {
    description = "Serialize all of python (almost)";
    homepage = "https://github.com/uqfoundation/dill/";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}