pythonPackages.adb-homeassistant: init at 1.3.1

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

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, libusb1
, rsa
, pycryptodome
, pytest
, mock
}:
buildPythonPackage rec {
pname = "adb-homeassistant";
version = "1.3.1";
# pypi does not contain tests, using github sources instead
src = fetchFromGitHub {
owner = "JeffLIrion";
repo = "python-adb";
rev = "5949bf432307cbba7128e84d7bc6add7f054a078";
sha256 = "0s3fazvbzchn1fsvjrd1jl8w9y4dvvgq6q8m8p5lr2gri0npr581";
};
propagatedBuildInputs = [
libusb1
rsa
pycryptodome
];
checkInputs = [ pytest mock ];
checkPhase = ''
py.test test
'';
meta = with lib; {
description = "A pure python implementation of the Android ADB and Fastboot protocols";
homepage = https://github.com/JeffLIrion/python-adb/tree/adb-homeassistant;
license = licenses.asl20;
maintainers = [ maintainers.makefu ];
};
}

View File

@ -146,6 +146,8 @@ in {
absl-py = callPackage ../development/python-modules/absl-py { };
adb-homeassistant = callPackage ../development/python-modules/adb-homeassistant { };
aenum = callPackage ../development/python-modules/aenum { };
affinity = callPackage ../development/python-modules/affinity { };