Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / devialet / default.nix
blob60f57090f40bb489648846dc4a0d95bf97629276
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 , setuptools
7 }:
9 buildPythonPackage rec {
10   pname = "devialet";
11   version = "1.4.5";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "fwestenberg";
18     repo = "devialet";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-oGa5tRCJAWBg/877UmmXnX7fkFLoxhyuG6gpXmyhRKo=";
21   };
23   nativeBuildInputs = [
24     setuptools
25   ];
27   propagatedBuildInputs = [
28     aiohttp
29   ];
31   # Module has no tests
32   doCheck = false;
34   pythonImportsCheck = [
35     "devialet"
36   ];
38   meta = with lib; {
39     description = "Library to interact with the Devialet API";
40     homepage = "https://github.com/fwestenberg/devialet";
41     changelog = "https://github.com/fwestenberg/devialet/releases/tag/v${version}";
42     license = licenses.mit;
43     maintainers = with maintainers; [ fab ];
44   };