about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/qcodes-loop/default.nix
blob: 2590a557b8cea4c39e52edb63b318860ae2cc91f (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{ lib
, fetchpatch
, fetchPypi
, pythonOlder
, buildPythonPackage
, qcodes
, h5py
, lazy-loader
, matplotlib
, numpy
, pandas
, setuptools
, versioningit
, wheel
, xarray
, hickle
, ipython
, slack-sdk
, hypothesis
, pytest-xdist
, pytest-mock
, pyqtgraph
, pyqt5
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "qcodes-loop";
  version = "0.1.1";
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit version;
    pname = "qcodes_loop";
    hash = "sha256-pDR0Ws8cYQifftdE9dKcSzMxmouFo4tJmQvNanm6zyM=";
  };

  patches = [
    # https://github.com/QCoDeS/Qcodes_loop/pull/39
    (fetchpatch {
      name = "relax-versioningit-dependency.patch";
      url = "https://github.com/QCoDeS/Qcodes_loop/commit/58006d3fb57344ae24dd44bceca98004617b5b57.patch";
      hash = "sha256-mSlm/Ql8e5xPL73ifxSoVc9+U58AAcAmBkdW5P6zEsg=";
    })
  ];

  nativeBuildInputs = [
    setuptools
    versioningit
    wheel
  ];

  propagatedBuildInputs = [
    qcodes
    h5py
    lazy-loader
    matplotlib
    numpy
    pandas
    xarray
    hickle
    ipython
  ];

  passthru.optional-dependencies = {
    qtplot = [
      pyqtgraph
    ];
    slack = [
      slack-sdk
    ];
  };

  nativeCheckInputs = [
    pytestCheckHook
    hypothesis
    pytest-xdist
    pytest-mock
    pyqt5
  ];

  pythonImportsCheck = [ "qcodes_loop" ];

  disabledTestPaths = [
    # test broken in 0.1.1, see https://github.com/QCoDeS/Qcodes_loop/pull/25
    "src/qcodes_loop/tests/test_hdf5formatter.py"
  ];

  postInstall = ''
    export HOME="$TMPDIR"
  '';

  meta = with lib; {
    description = "Features previously in QCoDeS";
    homepage = "https://github.com/QCoDeS/Qcodes_loop";
    license = licenses.mit;
    maintainers = with maintainers; [ evilmav ];
  };
}