python3Packages.pyvisa: init at 1.11.3
This commit is contained in:
parent
4d46cb67ad
commit
d638c6a874
49
pkgs/development/python-modules/pyvisa/default.nix
Normal file
49
pkgs/development/python-modules/pyvisa/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildPythonPackage
|
||||||
|
, setuptools_scm
|
||||||
|
, setuptools
|
||||||
|
, typing-extensions
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyvisa";
|
||||||
|
version = "1.11.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pyvisa";
|
||||||
|
repo = "pyvisa";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-Qe7W1zPI1aedLDnhkLTDPTa/lsNnCGik5Hu+jLn+meA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools_scm
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
typing-extensions
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
# Test can't find cli tool bin path correctly
|
||||||
|
disabledTests = [
|
||||||
|
"test_visa_info"
|
||||||
|
];
|
||||||
|
|
||||||
|
postConfigure = ''
|
||||||
|
export SETUPTOOLS_SCM_PRETEND_VERSION="v${version}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python package for support of the Virtual Instrument Software Architecture (VISA)";
|
||||||
|
homepage = "https://github.com/pyvisa/pyvisa";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ mvnetbiz ];
|
||||||
|
};
|
||||||
|
}
|
@ -6905,6 +6905,8 @@ in {
|
|||||||
|
|
||||||
pyvicare = callPackage ../development/python-modules/pyvicare { };
|
pyvicare = callPackage ../development/python-modules/pyvicare { };
|
||||||
|
|
||||||
|
pyvisa = callPackage ../development/python-modules/pyvisa { };
|
||||||
|
|
||||||
pyviz-comms = callPackage ../development/python-modules/pyviz-comms { };
|
pyviz-comms = callPackage ../development/python-modules/pyviz-comms { };
|
||||||
|
|
||||||
pyvizio = callPackage ../development/python-modules/pyvizio { };
|
pyvizio = callPackage ../development/python-modules/pyvizio { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user