about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pure-python-adb-homeassistant
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2019-02-24 23:32:42 +0100
committermakefu <github@syntax-fehler.de>2019-02-25 19:33:19 +0100
commit0382f5ef4426ac3b8284408229cad1f8703e60a6 (patch)
treea615d18375e227613c665b4eadb4e8bfeec9518c /pkgs/development/python-modules/pure-python-adb-homeassistant
parent36f316007494c388df1fec434c1e658542e3c3cc (diff)
pythonPackages.pure-python-adb-homeassistant: init at 0.1.6.dev0
Diffstat (limited to 'pkgs/development/python-modules/pure-python-adb-homeassistant')
-rw-r--r--pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix b/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix
new file mode 100644
index 0000000000000..51db97835553b
--- /dev/null
+++ b/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+buildPythonPackage rec {
+  pname = "pure-python-adb-homeassistant";
+  version = "0.1.6.dev0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "fe6d90220a6880649f6d6df4e707ce5034676710ee6146145ef995f7b769a482";
+  };
+
+  # Disable tests as they require docker, docker-compose and a dedicated
+  # android emulator
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Pure python implementation of the adb client";
+    homepage = https://github.com/JeffLIrion/pure-python-adb;
+    license = licenses.mit;
+    maintainers = [ maintainers.makefu ];
+  };
+}