mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
pyusb,
|
|
influxdb-client,
|
|
pyserial,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "openant-unstable";
|
|
version = "1.3.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Tigge";
|
|
repo = "openant";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-wDtHlkVyD7mMDXZ4LGMgatr9sSlQKVbgkYsKvHGr9Pc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
postInstall = ''
|
|
install -dm755 "$out/etc/udev/rules.d"
|
|
install -m644 resources/42-ant-usb-sticks.rules "$out/etc/udev/rules.d/99-ant-usb-sticks.rules"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ pyusb ];
|
|
|
|
optional-dependencies = {
|
|
serial = [ pyserial ];
|
|
influx = [ influxdb-client ];
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "openant" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Tigge/openant";
|
|
description = "ANT and ANT-FS Python Library";
|
|
mainProgram = "openant";
|
|
license = licenses.mit;
|
|
};
|
|
}
|