pythonPackages.pure-python-adb-homeassistant: init at 0.1.6.dev0
This commit is contained in:
parent
36f3160074
commit
0382f5ef44
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -550,6 +550,8 @@ in {
|
|||||||
|
|
||||||
progress = callPackage ../development/python-modules/progress { };
|
progress = callPackage ../development/python-modules/progress { };
|
||||||
|
|
||||||
|
pure-python-adb-homeassistant = callPackage ../development/python-modules/pure-python-adb-homeassistant { };
|
||||||
|
|
||||||
pymysql = callPackage ../development/python-modules/pymysql { };
|
pymysql = callPackage ../development/python-modules/pymysql { };
|
||||||
|
|
||||||
Pmw = callPackage ../development/python-modules/Pmw { };
|
Pmw = callPackage ../development/python-modules/Pmw { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user