nixpkgs/pkgs/development/python-modules/usbtmc/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

23 lines
596 B
Nix

{ lib, fetchFromGitHub, buildPythonPackage, pyusb }:
buildPythonPackage rec {
pname = "usbtmc";
version = "0.8";
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 ];
};
}