python3Packages.pyswitchmate: init at 0.5.1
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
bleak,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyswitchmate";
|
||||
version = "0.5.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Danielhiversen";
|
||||
repo = "pySwitchmate";
|
||||
tag = version;
|
||||
hash = "sha256-14rjlIsSFNP2OzuRamAJw9BaA+Z5EuQBEsrD02uQdFk=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ bleak ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "switchmate" ];
|
||||
|
||||
meta = {
|
||||
description = "A library to communicate with Switchmate";
|
||||
homepage = "https://github.com/Danielhiversen/pySwitchmate";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
||||
@@ -14111,6 +14111,8 @@ self: super: with self; {
|
||||
|
||||
pyswitchbot = callPackage ../development/python-modules/pyswitchbot { };
|
||||
|
||||
pyswitchmate = callPackage ../development/python-modules/pyswitchmate { };
|
||||
|
||||
pysychonaut = callPackage ../development/python-modules/pysychonaut { };
|
||||
|
||||
pysyncobj = callPackage ../development/python-modules/pysyncobj { };
|
||||
|
||||
Reference in New Issue
Block a user