python3Packages.tikteck: init at 0.4
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
parent
1419cc5c51
commit
da3913b61b
40
pkgs/development/python-modules/tikteck/default.nix
Normal file
40
pkgs/development/python-modules/tikteck/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
bluepy,
|
||||
pycryptodome,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tikteck";
|
||||
version = "0.4";
|
||||
pyproject = true;
|
||||
|
||||
# github doesn't have any tags unfortunately
|
||||
src = fetchPypi {
|
||||
pname = "tikteck";
|
||||
inherit version;
|
||||
hash = "sha256-KEbGT2RXLFMQ49gltOYcbE+ebJ1kiXzhT0DIeVXsSJM=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
bluepy
|
||||
pycryptodome
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "tikteck" ];
|
||||
|
||||
# no upstream tests exist
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Control Tikteck Bluetooth LED bulbs";
|
||||
homepage = "https://github.com/mjg59/python-tikteck";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ethancedwards8 ];
|
||||
};
|
||||
}
|
||||
@ -18126,6 +18126,8 @@ self: super: with self; {
|
||||
|
||||
tika-client = callPackage ../development/python-modules/tika-client { };
|
||||
|
||||
tikteck = callPackage ../development/python-modules/tikteck { };
|
||||
|
||||
tiktoken = callPackage ../development/python-modules/tiktoken { };
|
||||
|
||||
tikzplotlib = callPackage ../development/python-modules/tikzplotlib { };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user