summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/ham/androidtv/adbshell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/2configs/ham/androidtv/adbshell.nix')
-rw-r--r--makefu/2configs/ham/androidtv/adbshell.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/makefu/2configs/ham/androidtv/adbshell.nix b/makefu/2configs/ham/androidtv/adbshell.nix
deleted file mode 100644
index c2844eb4..00000000
--- a/makefu/2configs/ham/androidtv/adbshell.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, cryptography
-, pyasn1
-, rsa
-, pycryptodome
-}:
-
-buildPythonPackage rec {
- pname = "adb_shell";
- version = "0.1.3";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "16wb8n4fsh465fjlbsxi83xpi7xklaf28s9568bsb3nkyvfvl58h";
- };
-
- propagatedBuildInputs = [
- cryptography
- pyasn1
- rsa
- ];
-
- # tests are not part of pypi package
- doCheck = false;
-
- checkInputs = [
- pycryptodome
- ];
-
- meta = with lib; {
- description = "A Python implementation of ADB with shell and FileSync functionality";
- homepage = https://github.com/JeffLIrion/adb_shell/;
- license = licenses.mit;
- # maintainers = [ maintainers. ];
- };
-}