depot/third_party/nixpkgs/pkgs/development/python-modules/airtouch5py/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

51 lines
976 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
poetry-core,
# dependencies
bitarray,
crc,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "airtouch5py";
version = "0.2.10";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "danzel";
repo = "airtouch5py";
rev = "refs/tags/${version}";
hash = "sha256-8QMyp/Y60V64k1V8Hze5FsgpfHr8ZT1Xj/kQDP7CtjI=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "crc" ];
dependencies = [
bitarray
crc
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "airtouch5py" ];
meta = with lib; {
changelog = "https://github.com/danzel/airtouch5py/releases/tag/${version}";
description = "Python client for the airtouch 5";
homepage = "https://github.com/danzel/airtouch5py";
license = licenses.asl20;
maintainers = with maintainers; [ jamiemagee ];
};
}