Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyedimax / default.nix
blobe96147ef67a03d597095180bb5ca6c0596e2198b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "pyedimax";
9   version = "0.2.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1i3gr5vygqh2ryg67sl13aaql7nvf3nbybrg54628r4g7911b5rk";
15   };
17   propagatedBuildInputs = [ requests ];
19   # Project has no tests
20   doCheck = false;
21   pythonImportsCheck = [ "pyedimax" ];
23   meta = with lib; {
24     description = "Python library for interfacing with the Edimax smart plugs";
25     homepage = "https://github.com/andreipop2005/pyedimax";
26     license = with licenses; [ mit ];
27     maintainers = with maintainers; [ fab ];
28   };