2022-02-10 20:34:41 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, httpx
|
|
|
|
, pydantic
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
2024-01-13 08:15:51 +00:00
|
|
|
, setuptools
|
2022-02-10 20:34:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pycfmodel";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "0.22.0";
|
2024-01-13 08:15:51 +00:00
|
|
|
pyproject = true;
|
2022-02-10 20:34:41 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Skyscanner";
|
2024-01-13 08:15:51 +00:00
|
|
|
repo = "pycfmodel";
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-NLi94W99LhrBXNFItMfJczV9EZlgvmvkavrfDQJs0YU=";
|
2022-02-10 20:34:41 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pydantic
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-02-10 20:34:41 +00:00
|
|
|
httpx
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# Test require network access
|
|
|
|
"test_cloudformation_actions"
|
2022-02-20 05:27:41 +00:00
|
|
|
"test_auxiliar_cast"
|
|
|
|
"test_valid_es_domain_from_aws_documentation_examples_resource_can_be_built"
|
|
|
|
"test_valid_opensearch_domain_from_aws_documentation_examples_resource_can_be_built"
|
2022-03-05 16:20:37 +00:00
|
|
|
"test_resolve_booleans_different_properties_for_generic_resource"
|
2022-02-10 20:34:41 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"pycfmodel"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Model for Cloud Formation scripts";
|
|
|
|
homepage = "https://github.com/Skyscanner/pycfmodel";
|
2024-01-13 08:15:51 +00:00
|
|
|
changelog = "https://github.com/Skyscanner/pycfmodel/releases/tag/v${version}";
|
2022-02-10 20:34:41 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
2024-01-13 08:15:51 +00:00
|
|
|
broken = versionAtLeast pydantic.version "2";
|
2022-02-10 20:34:41 +00:00
|
|
|
};
|
|
|
|
}
|