summary refs log tree commit diff
path: root/pkgs/development/python-modules/transip/default.nix
blob: e71660d5b88e5f7cc3bd326ddae0707200fd9b96 (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
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, requests
, cryptography
, suds-jurko
, pytest
}:

buildPythonPackage rec {
  pname = "transip-api";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "benkonrath";
    repo = pname;
    rev = "v${version}";
    sha256 = "153x8ph7cp432flaqiy2zgp060ddychcqcrssxkcmjvbm86xrz17";
  };

  checkInputs = [ pytest ];

  # Constructor Tests require network access
  checkPhase = ''
    pytest --deselect=tests/service_tests/test_domain.py::TestDomainService::test_constructor \
           --deselect tests/service_tests/test_vps.py::TestVPSService::testConstructor \
           --deselect tests/service_tests/test_webhosting.py::TestWebhostingService::testConstructor
  '';


  propagatedBuildInputs = [ requests cryptography suds-jurko ];

  meta = with stdenv.lib; {
    description = "TransIP API Connector";
    homepage = "https://github.com/benkonrath/transip-api";
    license = licenses.mit;
    maintainers = with maintainers; [ flyfloh ];
  };
}