tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.tabcmd: use nixfmt
Fabian Affolter
2 years ago
3d286c09
e774c5f8
+27
-32
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
tabcmd
default.nix
+27
-32
pkgs/development/python-modules/tabcmd/default.nix
···
1
-
{ lib
2
-
, appdirs
3
-
, argparse
4
-
, buildPythonPackage
5
-
, doit
6
-
, fetchPypi
7
-
, ftfy
8
-
, mock
9
-
, pyinstaller-versionfile
10
-
, pytest-order
11
-
, pytestCheckHook
12
-
, python3
13
-
, pythonOlder
14
-
, pythonRelaxDepsHook
15
-
, requests
16
-
, setuptools
17
-
, setuptools-scm
18
-
, tableauserverclient
19
-
, types-appdirs
20
-
, types-mock
21
-
, types-requests
22
-
, types-setuptools
23
-
, urllib3
0
24
}:
25
26
buildPythonPackage rec {
···
46
"urllib3"
47
];
48
49
-
nativeBuildInputs = [
50
-
pythonRelaxDepsHook
51
-
];
52
53
-
build-system = [
54
-
setuptools
55
-
];
56
57
dependencies = [
58
appdirs
···
93
chmod +x $out/bin/tabcmd
94
'';
95
96
-
pythonImportsCheck = [
97
-
"tabcmd"
98
-
];
99
100
meta = with lib; {
101
description = "A command line client for working with Tableau Server";
···
1
+
{
2
+
lib,
3
+
appdirs,
4
+
argparse,
5
+
buildPythonPackage,
6
+
doit,
7
+
fetchPypi,
8
+
ftfy,
9
+
mock,
10
+
pyinstaller-versionfile,
11
+
pytest-order,
12
+
pytestCheckHook,
13
+
python3,
14
+
pythonOlder,
15
+
pythonRelaxDepsHook,
16
+
requests,
17
+
setuptools,
18
+
setuptools-scm,
19
+
tableauserverclient,
20
+
types-appdirs,
21
+
types-mock,
22
+
types-requests,
23
+
types-setuptools,
24
+
urllib3,
25
}:
26
27
buildPythonPackage rec {
···
47
"urllib3"
48
];
49
50
+
nativeBuildInputs = [ pythonRelaxDepsHook ];
0
0
51
52
+
build-system = [ setuptools ];
0
0
53
54
dependencies = [
55
appdirs
···
90
chmod +x $out/bin/tabcmd
91
'';
92
93
+
pythonImportsCheck = [ "tabcmd" ];
0
0
94
95
meta = with lib; {
96
description = "A command line client for working with Tableau Server";