mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
clickable: init at 7.4.0 (#178760)
* clickable: init at 7.4.0 * Update default.nix Co-authored-by: Jonas Heinrich <onny@project-insanity.org>
This commit is contained in:
parent
524d281acd
commit
0e75512a1b
2 changed files with 51 additions and 0 deletions
49
pkgs/development/tools/clickable/default.nix
Normal file
49
pkgs/development/tools/clickable/default.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -12950,6 +12950,8 @@ with pkgs;
|
|||
|
||||
clean = callPackage ../development/compilers/clean { };
|
||||
|
||||
clickable = python3Packages.callPackage ../development/tools/clickable { };
|
||||
|
||||
closurecompiler = callPackage ../development/compilers/closure { };
|
||||
|
||||
cmdstan = callPackage ../development/compilers/cmdstan { };
|
||||
|
|
Loading…
Reference in a new issue