depot/third_party/nixpkgs/pkgs/development/python-modules/usbtmc/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
590 B
Nix

{ lib, fetchurl, buildPythonPackage, pyusb }:
buildPythonPackage rec {
pname = "usbtmc";
version = "0.8";
src = fetchurl {
url = "https://github.com/python-ivi/python-usbtmc/archive/v${version}.tar.gz";
sha256 = "14f4j77ljr45crnjwlp1dqbxwa45s20y2fpq5rg59r60w15al4yw";
};
propagatedBuildInputs = [ pyusb ];
meta = with lib; {
description = "Python implementation of the USBTMC instrument control protocol";
homepage = "http://alexforencich.com/wiki/en/python-usbtmc/start";
license = licenses.mit;
maintainers = with maintainers; [ bjornfor ];
};
}