summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/ham/androidtv/purepythonadb.nix
blob: d4e763b70150c2b00439b2e7610947e1a6bd1d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "pure-python-adb";
  version = "0.2.3.dev0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "88e5a4578435197799aa368fb1a5d87fe43e02a888cb7e85c2ad66173b383c89";
  };

  meta = with lib; {
    description = "Pure python implementation of the adb client";
    homepage = https://github.com/Swind/pure-python-adb;
    license = licenses.mit;
    # maintainers = [ maintainers. ];
  };
}