biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / usbtmc / default.nix
blob9220c3acde9e2e541f611e70f6b117dd7fd8d8be
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5   pyusb,
6 }:
8 buildPythonPackage rec {
9   pname = "usbtmc";
10   version = "0.8";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "python-ivi";
15     repo = "python-usbtmc";
16     rev = "v${version}";
17     hash = "sha256-69kqBTqnVqdWC2mqlXylzb9VkdhwTGZI0Ykf6lqbypI=";
18   };
20   propagatedBuildInputs = [ pyusb ];
22   meta = with lib; {
23     description = "Python implementation of the USBTMC instrument control protocol";
24     homepage = "http://alexforencich.com/wiki/en/python-usbtmc/start";
25     license = licenses.mit;
26     maintainers = with maintainers; [ bjornfor ];
27   };