about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dill/default.nix
blob: 3caf068a1270d631d01c5d35975c1f8809f0ef92 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, python
, setuptools

# passthru tests
, apache-beam
, datasets
}:

buildPythonPackage rec {
  pname = "dill";
  version = "0.3.6";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "uqfoundation";
    repo = pname;
    rev = "refs/tags/dill-${version}";
    hash = "sha256-lh1o/TqnqtYN9xTZom33y1/7ZhMEAFpheLdtalwgObQ=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} dill/tests/__main__.py
    runHook postCheck
  '';

  passthru.tests = {
    inherit apache-beam datasets;
  };

  pythonImportsCheck = [ "dill" ];

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