croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / devialet / default.nix
bloba9490581ce34817ba58515311eb1a2327cdd23ee
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "devialet";
12   version = "1.4.5";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "fwestenberg";
19     repo = "devialet";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-oGa5tRCJAWBg/877UmmXnX7fkFLoxhyuG6gpXmyhRKo=";
22   };
24   nativeBuildInputs = [ setuptools ];
26   propagatedBuildInputs = [ aiohttp ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [ "devialet" ];
33   meta = with lib; {
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 ];
39   };