about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysnow/default.nix
blob: ef7fcd20e78ea90fba8fc910a3fd288a55f51ae8 (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
41
42
43
44
45
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pythonAtLeast
, brotli
, ijson
, nose
, requests_oauthlib 
, python_magic
, pytz
}:

buildPythonPackage rec {
  pname = "pysnow";
  version = "0.7.16";
  
  src = fetchPypi {
    inherit pname version;
    sha256 = "5df61091470e48b5b3a6ea75637f69d3aacae20041487ea457a9a0e3093fba8c";
  };

  propagatedBuildInputs = [
    brotli
    ijson 
    python_magic 
    pytz 
    requests_oauthlib
  ];

  checkInputs = [ nose ];

  checkPhase = ''
    nosetests --cover-package=pysnow --with-coverage --cover-erase
  '';

  meta = with lib; {
    description = "ServiceNow HTTP client library written in Python";
    homepage = "https://github.com/rbw/pysnow";
    license = licenses.mit;
    maintainers = [ maintainers.almac ];  
  };

}