nixpkgs/pkgs/development/python-modules/vxi11/default.nix

27 lines
639 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchFromGitHub, nose }:
2018-03-19 18:01:08 +03:00
buildPythonPackage rec {
pname = "python-vxi11";
version = "0.9";
# no tests in PyPI tarball
src = fetchFromGitHub {
owner = "python-ivi";
repo = pname;
rev = "v${version}";
sha256 = "1xv7chp7rm0vrvbz6q57fpwhlgjz461h08q9zgmkcl2l0w96hmsn";
2018-03-19 18:01:08 +03:00
};
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
meta = with stdenv.lib; {
description = "VXI-11 driver for controlling instruments over Ethernet";
homepage = https://github.com/python-ivi/python-vxi11;
license = licenses.mit;
maintainers = with maintainers; [ bgamari ];
};
}