1 { lib, fetchFromGitHub, buildPythonPackage, pyusb }:
3 buildPythonPackage rec {
8 src = fetchFromGitHub {
10 repo = "python-usbtmc";
12 hash = "sha256-69kqBTqnVqdWC2mqlXylzb9VkdhwTGZI0Ykf6lqbypI=";
15 propagatedBuildInputs = [ pyusb ];
18 description = "Python implementation of the USBTMC instrument control protocol";
19 homepage = "http://alexforencich.com/wiki/en/python-usbtmc/start";
20 license = licenses.mit;
21 maintainers = with maintainers; [ bjornfor ];