1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

pythonPackages.pure-python-adb-homeassistant: init at 0.1.6.dev0

This commit is contained in:
makefu 2019-02-24 23:32:42 +01:00
parent 36f3160074
commit 0382f5ef44
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225
2 changed files with 26 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -550,6 +550,8 @@ in {
progress = callPackage ../development/python-modules/progress { };
pure-python-adb-homeassistant = callPackage ../development/python-modules/pure-python-adb-homeassistant { };
pymysql = callPackage ../development/python-modules/pymysql { };
Pmw = callPackage ../development/python-modules/Pmw { };