1 { lib, buildPythonPackage, fetchFromGitHub, nose }:
3 buildPythonPackage rec {
4 pname = "python-vxi11";
7 # no tests in PyPI tarball
8 src = fetchFromGitHub {
12 sha256 = "1xv7chp7rm0vrvbz6q57fpwhlgjz461h08q9zgmkcl2l0w96hmsn";
15 nativeCheckInputs = [ nose ];
21 description = "VXI-11 driver for controlling instruments over Ethernet";
22 mainProgram = "vxi11-cli";
23 homepage = "https://github.com/python-ivi/python-vxi11";
24 license = licenses.mit;
25 maintainers = with maintainers; [ bgamari ];