Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / notify-events / default.nix
blob97d888ae23ce55d19daf7b42188de47eb65077e2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "notify-events";
9   version = "1.1.3";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "notify_events";
15     inherit version;
16     sha256 = "e63ba935c3300ff7f48cba115f7cb4474906e83c2e9b60b95a0881eb949701e7";
17   };
19   propagatedBuildInputs = [
20     requests
21   ];
23   # upstream has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "notify_events" ];
28   meta = {
29     description = "Python client for Notify.Events";
30     homepage = "https://github.com/notify-events/python";
31     license = lib.licenses.mit;
32     maintainers = with lib.maintainers; [ dotlambda ];
33   };