about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/etelemetry/default.nix
blob: 24777c4e9cf8b38fd7787ba6dd6aa713ba621743 (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
{ lib, buildPythonPackage, fetchPypi, isPy27, ci-info, ci-py, requests }:

buildPythonPackage rec {
  version = "0.2.1";
  format = "setuptools";
  pname = "etelemetry";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1rw8im09ppnb7z7p7rx658rp5ib8zca8byxg1kiflqwgx5c8zddz";
  };

  propagatedBuildInputs = [ ci-info ci-py requests ];

  # all 2 of the tests both try to pull down from a url
  doCheck = false;

  pythonImportsCheck = [
    "etelemetry"
    "etelemetry.client"
    "etelemetry.config"
  ];

  meta = with lib; {
    description = "Lightweight python client to communicate with the etelemetry server";
    homepage = "https://github.com/mgxd/etelemetry-client";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };
}