clickable: Switch to buildPythonApplication

This commit is contained in:
OPNA2608
2024-06-29 14:34:59 +02:00
parent 7de69e22ab
commit 93ff8f23fc
2 changed files with 5 additions and 12 deletions
+4 -11
View File
@@ -1,17 +1,10 @@
{ lib
, fetchFromGitLab
, buildPythonPackage
, cookiecutter
, requests
, pyyaml
, jsonschema
, argcomplete
, pytestCheckHook
, watchdog
, python3Packages
, stdenv
}:
buildPythonPackage rec {
python3Packages.buildPythonApplication rec {
pname = "clickable";
version = "7.11.0";
@@ -22,7 +15,7 @@ buildPythonPackage rec {
sha256 = "sha256-OVS+FK2ABoKbBFLDc3drcjeaa3yO9/8Ah8FzlN2fd8g=";
};
propagatedBuildInputs = [
propagatedBuildInputs = with python3Packages; [
cookiecutter
requests
pyyaml
@@ -31,7 +24,7 @@ buildPythonPackage rec {
watchdog
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
disabledTests = [
# Tests require docker
+1 -1
View File
@@ -15171,7 +15171,7 @@ with pkgs;
clean = callPackage ../development/compilers/clean { };
clickable = python3Packages.callPackage ../development/tools/clickable { };
clickable = callPackage ../development/tools/clickable { };
closurecompiler = callPackage ../development/compilers/closure { };