summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/jenkins-job-builder/default.nix
blob: 3f4c2cb1fc92544de71e65d3b473517eddcb545b (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fasteners,
  jinja2,
  pbr,
  python-jenkins,
  pyyaml,
  six,
  stevedore,
  pytestCheckHook,
  setuptools,
  testtools,
  pytest-mock,
  nixosTests,
}:

buildPythonPackage rec {
  pname = "jenkins-job-builder";
  version = "6.4.2";
  format = "setuptools";

  build-system = [ setuptools ];

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-G+DVRd6o3GwTdFNnJkotIidrxexJZSdgCGXTA4KnJJA=";
  };

  postPatch = ''
    export HOME=$(mktemp -d)
  '';

  dependencies = [
    pbr
    python-jenkins
    pyyaml
    six
    stevedore
    fasteners
    jinja2
  ];

  nativeCheckInputs = [
    pytestCheckHook
    testtools
    pytest-mock
  ];

  passthru.tests = { inherit (nixosTests) jenkins; };

  meta = {
    description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git";
    mainProgram = "jenkins-jobs";
    homepage = "https://jenkins-job-builder.readthedocs.io/en/latest/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ bot-wxt1221 ];
  };
}