depot/third_party/nixpkgs/pkgs/development/python-modules/aiolookin/default.nix
Default email 620eecebfb Project import generated by Copybara.
GitOrigin-RevId: 2deb07f3ac4eeb5de1c12c4ba2911a2eb1f6ed61
2021-10-28 08:52:43 +02:00

52 lines
926 B
Nix

{ lib
, aiohttp
, buildPythonPackage
, faker
, fetchFromGitHub
, pytest-aiohttp
, pytest-mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiolookin";
version = "0.0.3";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ANMalko";
repo = pname;
rev = "v${version}";
sha256 = "15mdvrzvqpdvg9zkczzgzzc5v2ri3v5f17000mhxill1nhirxhqx";
};
propagatedBuildInputs = [
aiohttp
];
checkInputs = [
faker
pytest-aiohttp
pytest-mock
pytestCheckHook
];
disabledTests = [
# Not all tests are ready yet
"test_successful"
];
pythonImportsCheck = [
"aiolookin"
];
meta = with lib; {
description = "Python client for interacting with LOOKin devices";
homepage = "https://github.com/ANMalko/aiolookin";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}