nixpkgs/pkgs/development/python-modules/usbtmc/default.nix
2024-05-22 17:32:03 +02:00

29 lines
630 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
pyusb,
}:
buildPythonPackage rec {
pname = "usbtmc";
version = "0.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "python-ivi";
repo = "python-usbtmc";
rev = "v${version}";
hash = "sha256-69kqBTqnVqdWC2mqlXylzb9VkdhwTGZI0Ykf6lqbypI=";
};
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 ];
};
}