nixpkgs/pkgs/development/python-modules/jenkinsapi/default.nix
Elliot Cameron 2fd2d5365e python3Packages.jenkinsapi: fix failing build
Also refactor tests to use common Nixpkgs patterns.
2023-08-07 14:31:44 -04:00

54 lines
945 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, mock
, pbr
, pytest-mock
, pytestCheckHook
, pytz
, requests
, six
}:
buildPythonPackage rec {
pname = "jenkinsapi";
version = "0.3.13";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-JGqYpj5h9UoV0WEFyxVIjFZwc030HobHrw1dnAryQLk=";
};
nativeBuildInputs = [
flit-core
pbr
];
propagatedBuildInputs = [
pytz
requests
six
];
nativeCheckInputs = [
mock
pytest-mock
pytestCheckHook
];
# don't run tests that try to spin up jenkins
disabledTests = [ "systests" ];
pythonImportsCheck = [ "jenkinsapi" ];
meta = with lib; {
description = "A Python API for accessing resources on a Jenkins continuous-integration server";
homepage = "https://github.com/salimfadhley/jenkinsapi";
maintainers = with maintainers; [ drets ] ++ teams.deshaw.members;
license = licenses.mit;
};
}