10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "fwestenberg";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-oGa5tRCJAWBg/877UmmXnX7fkFLoxhyuG6gpXmyhRKo=";
24 nativeBuildInputs = [ setuptools ];
26 propagatedBuildInputs = [ aiohttp ];
31 pythonImportsCheck = [ "devialet" ];
34 description = "Library to interact with the Devialet API";
35 homepage = "https://github.com/fwestenberg/devialet";
36 changelog = "https://github.com/fwestenberg/devialet/releases/tag/v${version}";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];