pythonPackages.vxi11: init at 0.9

This commit is contained in:
Ben Gamari 2018-03-19 11:01:08 -04:00 committed by Robert Schütz
parent 9c5f79d2ab
commit ef3c42b9c4
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "python-vxi11";
version = "0.9";
src = fetchPypi {
inherit pname version;
sha256 = "1zvd0wxp6mccaxy9fzlzk3i4pr2ggnj79r3awimjqd89pvaxiyq1";
};
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 ];
};
}

View File

@ -18603,6 +18603,8 @@ EOF
};
};
vxi11 = callPackage ../development/python-modules/vxi11 { };
svg2tikz = self.buildPythonPackage {
name = "svg2tikz-1.0.0";
disabled = ! isPy27;