Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hatasmota / default.nix
blob6dcd50f3c46a57b2fd5c8f2de1f270d39d20deba
1 { lib
2 , attrs
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 , setuptools
7 , voluptuous
8 }:
10 buildPythonPackage rec {
11   pname = "hatasmota";
12   version = "0.8.0";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchFromGitHub {
18     owner = "emontnemery";
19     repo = pname;
20     rev = "refs/tags/${version}";
21     hash = "sha256-Kbz/ETSJGx6u0ZNfEWfl9klBIB3yPcfHGy1uKK50TGA=";
22   };
24   nativeBuildInputs = [
25     setuptools
26   ];
28   propagatedBuildInputs = [
29     attrs
30     voluptuous
31   ];
33   # Project has no tests
34   doCheck = false;
36   pythonImportsCheck = [
37     "hatasmota"
38   ];
40   meta = with lib; {
41     description = "Python module to help parse and construct Tasmota MQTT messages";
42     homepage = "https://github.com/emontnemery/hatasmota";
43     changelog = "https://github.com/emontnemery/hatasmota/releases/tag/${version}";
44     license = with licenses; [ mit ];
45     maintainers = with maintainers; [ fab ];
46   };