python3Packages.pyedimax: init at 0.2.1
This commit is contained in:
parent
1af6e3aeed
commit
18ae358e27
28
pkgs/development/python-modules/pyedimax/default.nix
Normal file
28
pkgs/development/python-modules/pyedimax/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyedimax";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1i3gr5vygqh2ryg67sl13aaql7nvf3nbybrg54628r4g7911b5rk";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "pyedimax" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library for interfacing with the Edimax smart plugs";
|
||||||
|
homepage = "https://github.com/andreipop2005/pyedimax";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -5301,6 +5301,8 @@ in {
|
|||||||
|
|
||||||
pyechonest = callPackage ../development/python-modules/pyechonest { };
|
pyechonest = callPackage ../development/python-modules/pyechonest { };
|
||||||
|
|
||||||
|
pyedimax = callPackage ../development/python-modules/pyedimax { };
|
||||||
|
|
||||||
pyee = callPackage ../development/python-modules/pyee { };
|
pyee = callPackage ../development/python-modules/pyee { };
|
||||||
|
|
||||||
pyelftools = callPackage ../development/python-modules/pyelftools { };
|
pyelftools = callPackage ../development/python-modules/pyelftools { };
|
||||||
|
Loading…
Reference in New Issue
Block a user