summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyitachip2ir/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyitachip2ir/default.nix')
-rw-r--r--pkgs/development/python-modules/pyitachip2ir/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyitachip2ir/default.nix b/pkgs/development/python-modules/pyitachip2ir/default.nix
new file mode 100644
index 000000000000..e74a2fb9ed97
--- /dev/null
+++ b/pkgs/development/python-modules/pyitachip2ir/default.nix
@@ -0,0 +1,31 @@
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ setuptools,
+}:
+
+buildPythonPackage rec {
+ pname = "pyitachip2ir";
+ version = "0.0.7";
+ pyproject = true;
+
+ src = fetchPypi {
+ inherit pname version;
+ hash = "sha256-T/Q3tZTTwqlaHDR2l2nRLISC4LLrOPZZv14sRxYyqDQ=";
+ };
+
+ build-system = [ setuptools ];
+
+ # Package has no tests
+ doCheck = false;
+
+ pythonImportsCheck = [ "pyitachip2ir" ];
+
+ meta = {
+ description = "Library for sending IR commands to an ITach IP2IR gateway";
+ homepage = "https://github.com/alanfischer/itachip2ir";
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.jamiemagee ];
+ };
+}