pythonPackages.vxi11: init at 0.9
This commit is contained in:
parent
9c5f79d2ab
commit
ef3c42b9c4
23
pkgs/development/python-modules/vxi11/default.nix
Normal file
23
pkgs/development/python-modules/vxi11/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -18603,6 +18603,8 @@ EOF
|
||||
};
|
||||
};
|
||||
|
||||
vxi11 = callPackage ../development/python-modules/vxi11 { };
|
||||
|
||||
svg2tikz = self.buildPythonPackage {
|
||||
name = "svg2tikz-1.0.0";
|
||||
disabled = ! isPy27;
|
||||
|
Loading…
Reference in New Issue
Block a user