depot/third_party/nixpkgs/pkgs/development/tools/clickable/default.nix
Default email 13da32182d Project import generated by Copybara.
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
2022-08-21 15:32:41 +02:00

49 lines
953 B
Nix

{ lib
, fetchFromGitLab
, buildPythonPackage
, cookiecutter
, requests
, pyyaml
, jsonschema
, argcomplete
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "clickable";
version = "7.4.0";
src = fetchFromGitLab {
owner = "clickable";
repo = "clickable";
rev = "v${version}";
sha256 = "sha256-QS7vi0gUQbqqRYkZwD2B+zkt6DQ6AamQO7sihD8qWS0=";
};
propagatedBuildInputs = [
cookiecutter
requests
pyyaml
jsonschema
argcomplete
];
checkInputs = [ pytestCheckHook ];
disabledTests = [
# Test require network connection
"test_cpp_plugin"
"test_html"
"test_python"
"test_qml_only"
"test_rust"
];
meta = {
description = "A build system for Ubuntu Touch apps";
homepage = "https://clickable-ut.dev";
changelog = "https://clickable-ut.dev/en/latest/changelog.html";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ilyakooo0 ];
};
}