summary refs log tree commit diff
path: root/pkgs/development/python-modules/pagerduty/default.nix
blob: 8390cceb2fcfeb6cf72dc128f297e15cf77a1de5 (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
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "pagerduty";
  version = "0.2.1";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "e8c237239d3ffb061069aa04fc5b3d8ae4fb0af16a9713fe0977f02261d323e9";
  };

  meta = with lib; {
    homepage = "https://github.com/samuel/python-pagerduty";
    description = "Library for the PagerDuty service API";
    license = licenses.bsd0;
  };

}