mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
117 lines
2.4 KiB
Nix
117 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
git,
|
|
python3,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
let
|
|
python = python3.override {
|
|
self = python;
|
|
packageOverrides = self: super: {
|
|
pydantic-yaml = super.pydantic-yaml.overridePythonAttrs (old: rec {
|
|
version = "0.11.2";
|
|
src = fetchFromGitHub {
|
|
owner = "NowanIlfideme";
|
|
repo = "pydantic-yaml";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-AeUyVav0/k4Fz69Qizn4hcJKoi/CDR9eUan/nJhWsDY=";
|
|
};
|
|
dependencies = with self; [
|
|
deprecated
|
|
importlib-metadata
|
|
pydantic_1
|
|
ruamel-yaml
|
|
types-deprecated
|
|
];
|
|
});
|
|
};
|
|
};
|
|
in
|
|
python.pkgs.buildPythonApplication rec {
|
|
pname = "charmcraft";
|
|
version = "3.1.2";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canonical";
|
|
repo = "charmcraft";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Qi2ZtAYgQlKj77QPovcT3RrPwAlEwaFyoJ0MAq4EETE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace charmcraft/__init__.py --replace-fail "dev" "${version}"
|
|
'';
|
|
|
|
dependencies = with python.pkgs; [
|
|
craft-application
|
|
craft-cli
|
|
craft-parts
|
|
craft-platforms
|
|
craft-providers
|
|
craft-store
|
|
distro
|
|
docker
|
|
humanize
|
|
jinja2
|
|
jsonschema
|
|
pydantic_1
|
|
python-dateutil
|
|
pyyaml
|
|
requests
|
|
requests-toolbelt
|
|
requests-unixsocket
|
|
snap-helpers
|
|
tabulate
|
|
urllib3
|
|
];
|
|
|
|
build-system = with python.pkgs; [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
pythonRelaxDeps = [ "urllib3" ];
|
|
|
|
nativeCheckInputs =
|
|
with python.pkgs;
|
|
[
|
|
hypothesis
|
|
pyfakefs
|
|
pytest-check
|
|
pytest-mock
|
|
pytest-subprocess
|
|
pytestCheckHook
|
|
responses
|
|
setuptools
|
|
]
|
|
++ [ git ];
|
|
|
|
preCheck = ''
|
|
mkdir -p check-phase
|
|
export HOME="$(pwd)/check-phase"
|
|
'';
|
|
|
|
pytestFlagsArray = [ "tests/unit" ];
|
|
|
|
disabledTests = [
|
|
# Relies upon the `charm` tool being installed
|
|
"test_validate_missing_charm"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
mainProgram = "charmcraft";
|
|
description = "Build and publish Charmed Operators for deployment with Juju";
|
|
homepage = "https://github.com/canonical/charmcraft";
|
|
changelog = "https://github.com/canonical/charmcraft/releases/tag/${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ jnsgruk ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|