12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
23 hash = "sha256-GKrgUK2nSZi+8oJoS45MjpU9+INEgcla9Kaw6ceNVp0=";
31 propagatedBuildInputs = [ typing-extensions ];
33 nativeCheckInputs = [ pytestCheckHook ];
35 # Test can't find cli tool bin path correctly
36 disabledTests = [ "test_visa_info" ];
39 description = "Python package for support of the Virtual Instrument Software Architecture (VISA)";
40 homepage = "https://github.com/pyvisa/pyvisa";
41 license = licenses.mit;
42 maintainers = with maintainers; [ mvnetbiz ];