File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed
development/tools/clickable Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 11{ lib
22, fetchFromGitLab
3- , buildPythonPackage
4- , cookiecutter
5- , requests
6- , pyyaml
7- , jsonschema
8- , argcomplete
9- , pytestCheckHook
10- , watchdog
3+ , python3Packages
114, stdenv
125} :
136
14- buildPythonPackage rec {
7+ python3Packages . buildPythonApplication rec {
158 pname = "clickable" ;
169 version = "7.11.0" ;
1710
@@ -22,7 +15,7 @@ buildPythonPackage rec {
2215 sha256 = "sha256-OVS+FK2ABoKbBFLDc3drcjeaa3yO9/8Ah8FzlN2fd8g=" ;
2316 } ;
2417
25- propagatedBuildInputs = [
18+ propagatedBuildInputs = with python3Packages ; [
2619 cookiecutter
2720 requests
2821 pyyaml
@@ -31,7 +24,7 @@ buildPythonPackage rec {
3124 watchdog
3225 ] ;
3326
34- nativeCheckInputs = [ pytestCheckHook ] ;
27+ nativeCheckInputs = [ python3Packages . pytestCheckHook ] ;
3528
3629 disabledTests = [
3730 # Tests require docker
Original file line number Diff line number Diff line change @@ -15171,7 +15171,7 @@ with pkgs;
1517115171
1517215172 clean = callPackage ../development/compilers/clean { };
1517315173
15174- clickable = python3Packages. callPackage ../development/tools/clickable { };
15174+ clickable = callPackage ../development/tools/clickable { };
1517515175
1517615176 closurecompiler = callPackage ../development/compilers/closure { };
1517715177
You can’t perform that action at this time.
0 commit comments