c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, buildPythonPackage
|
|
, setuptools
|
|
, versioningit
|
|
, qcodes
|
|
, packaging
|
|
, pytestCheckHook
|
|
, pytest-mock
|
|
, pyvisa-sim
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "qcodes-contrib-drivers";
|
|
version = "0.21.0";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "QCoDeS";
|
|
repo = "Qcodes_contrib_drivers";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-7WkG6Bq4J4PU4eWX52RaupQ8cNzE+sJ7s3PoXFRxG2w=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools versioningit ];
|
|
|
|
propagatedBuildInputs = [
|
|
qcodes
|
|
packaging
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
pyvisa-sim
|
|
];
|
|
|
|
pythonImportsCheck = [ "qcodes_contrib_drivers" ];
|
|
|
|
# should be fixed starting with 0.19.0, remove at next release
|
|
disabledTestPaths = [
|
|
"qcodes_contrib_drivers/tests/test_Keysight_M3201A.py"
|
|
];
|
|
|
|
postInstall = ''
|
|
export HOME="$TMPDIR"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "User contributed drivers for QCoDeS";
|
|
homepage = "https://github.com/QCoDeS/Qcodes_contrib_drivers";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ evilmav ];
|
|
};
|
|
}
|