mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
python-usbtmc: new package
This Python package supports the USBTMC instrument control protocol for controlling instruments over USB. http://alexforencich.com/wiki/en/python-usbtmc/start
This commit is contained in:
parent
bc847600a9
commit
77000f7af0
1 changed files with 20 additions and 0 deletions
|
@ -8808,6 +8808,26 @@ rec {
|
|||
};
|
||||
|
||||
|
||||
usbtmc = buildPythonPackage rec {
|
||||
name = "usbtmc-${version}";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/python-ivi/python-usbtmc/archive/v${version}.tar.gz";
|
||||
sha256 = "0xn8whjcdn8wgs9j1gj7sw7fh425akdmq3hi448m36fywldbhryg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyusb ];
|
||||
|
||||
meta = {
|
||||
description = "Python implementation of the USBTMC instrument control protocol";
|
||||
homepage = http://alexforencich.com/wiki/en/python-usbtmc/start;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
txamqp = buildPythonPackage rec {
|
||||
name = "txamqp-${version}";
|
||||
version = "0.3";
|
||||
|
|
Loading…
Reference in a new issue