mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
0215034f25
when they already rely on SRI hashes.
22 lines
596 B
Nix
22 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 ];
|
|
};
|
|
}
|