about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fritzconnection/default.nix
blob: d8f1a52d465afc97706b4e32b247a899db36da2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, pytest, requests }:

buildPythonPackage rec {
  pname = "fritzconnection";
  version = "1.2.1";

  src = fetchFromGitHub {
    owner = "kbr";
    repo = pname;
    rev = version;
    hash = "sha256:17z4shs56ci9mxmilppv5xy9gbnbp6p1h2ms6x55nkvwndacrp7x";
  };

  disabled = pythonOlder "3.5";

  # Exclude test files from build, which cause ImportMismtachErrors and
  # otherwise missing resources during tests. This patch can be dropped once
  # https://github.com/kbr/fritzconnection/pull/39 is merged.
  prePatch = ''
    substituteInPlace setup.py \
      --replace 'find_packages()' 'find_packages(exclude=["*.tests"])'
  '';

  propagatedBuildInputs = [ requests ];

  checkInputs = [ pytest ];

  checkPhase = ''
    pytest
  '';

  meta = with stdenv.lib; {
    description = "Python-Tool to communicate with the AVM FritzBox using the TR-064 protocol";
    homepage = "https://bitbucket.org/kbr/fritzconnection";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda valodim ];
  };
}