2024-07-27 06:49:29 +00:00
|
|
|
{
|
|
|
|
lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonAtLeast
|
|
|
|
, setuptools
|
|
|
|
, requests
|
|
|
|
, python-dateutil
|
|
|
|
, pyjwt
|
|
|
|
, pytestCheckHook
|
|
|
|
, responses
|
|
|
|
, nix-update-script
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dohq-artifactory";
|
2024-10-04 16:56:33 +00:00
|
|
|
version = "0.10.1";
|
2024-07-27 06:49:29 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "devopshq";
|
|
|
|
repo = "artifactory";
|
|
|
|
rev = version;
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-lMT1b6JUDT01fJzQrVc0lMqeGrJnvk6ms4KIYtfTQps=";
|
2024-07-27 06:49:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# https://github.com/devopshq/artifactory/issues/430
|
|
|
|
disabled = pythonAtLeast "3.12";
|
|
|
|
|
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
requests
|
|
|
|
python-dateutil
|
|
|
|
pyjwt
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "artifactory" ];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
responses
|
|
|
|
];
|
|
|
|
|
|
|
|
pytestFlagsArray = [ "tests/unit" ];
|
|
|
|
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python interface library for JFrog Artifactory";
|
|
|
|
homepage = "https://devopshq.github.io/artifactory/";
|
|
|
|
changelog = "https://github.com/devopshq/artifactory/releases/tag/${version}";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ h7x4 ];
|
|
|
|
};
|
|
|
|
}
|