about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pysyncthru/default.nix
blob: d5761bebee7f528de9a72937e67d262fbbca9ec5 (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
39
40
{ lib
, isPy27
, buildPythonPackage
, fetchFromGitHub
, aiohttp
, demjson3
, python
}:

buildPythonPackage rec {
  pname = "pysyncthru";
  version = "0.7.10";

  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "nielstron";
    repo = "pysyncthru";
    rev = "release-${version}";
    sha256 = "1c29w2ldrnq0vxr9cfa2pjhwdvrpw393c84khgg2y56jrkbidq53";
  };

  propagatedBuildInputs = [
    aiohttp
    demjson3
  ];

  checkPhase = ''
    ${python.interpreter} -m unittest
  '';

  pythonImportsCheck = [ "pysyncthru" ];

  meta = with lib; {
    description = "Automated JSON API based communication with Samsung SyncThru Web Service";
    homepage = "https://github.com/nielstron/pysyncthru";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}