summary refs log tree commit diff
path: root/pkgs/development/python-modules/notify-events/default.nix
blob: 97d888ae23ce55d19daf7b42188de47eb65077e2 (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
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:

buildPythonPackage rec {
  pname = "notify-events";
  version = "1.1.3";

  format = "setuptools";

  src = fetchPypi {
    pname = "notify_events";
    inherit version;
    sha256 = "e63ba935c3300ff7f48cba115f7cb4474906e83c2e9b60b95a0881eb949701e7";
  };

  propagatedBuildInputs = [
    requests
  ];

  # upstream has no tests
  doCheck = false;

  pythonImportsCheck = [ "notify_events" ];

  meta = {
    description = "Python client for Notify.Events";
    homepage = "https://github.com/notify-events/python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}