tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
devpi-client: format with nixfmt
Fabian Affolter
2 years ago
4d45bf20
a3f309b6
+28
-26
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
devpi-client
default.nix
+28
-26
pkgs/development/tools/devpi-client/default.nix
···
1
1
-
{ lib
2
2
-
, devpi-server
3
3
-
, git
4
4
-
, glibcLocales
5
5
-
, python3
6
6
-
, fetchPypi
1
1
+
{
2
2
+
lib,
3
3
+
devpi-server,
4
4
+
git,
5
5
+
glibcLocales,
6
6
+
python3,
7
7
+
fetchPypi,
7
8
}:
8
9
9
10
python3.pkgs.buildPythonApplication rec {
···
22
23
setuptools-changelog-shortener
23
24
];
24
25
25
25
-
buildInputs = [
26
26
-
glibcLocales
27
27
-
];
26
26
+
buildInputs = [ glibcLocales ];
28
27
29
28
dependencies = with python3.pkgs; [
30
29
build
···
36
35
platformdirs
37
36
];
38
37
39
39
-
nativeCheckInputs = [
40
40
-
devpi-server
41
41
-
git
42
42
-
] ++ (with python3.pkgs; [
43
43
-
mercurial
44
44
-
mock
45
45
-
pypitoken
46
46
-
pytestCheckHook
47
47
-
sphinx
48
48
-
virtualenv
49
49
-
webtest
50
50
-
wheel
51
51
-
]);
38
38
+
nativeCheckInputs =
39
39
+
[
40
40
+
devpi-server
41
41
+
git
42
42
+
]
43
43
+
++ (with python3.pkgs; [
44
44
+
mercurial
45
45
+
mock
46
46
+
pypitoken
47
47
+
pytestCheckHook
48
48
+
sphinx
49
49
+
virtualenv
50
50
+
webtest
51
51
+
wheel
52
52
+
]);
52
53
53
54
preCheck = ''
54
55
export HOME=$(mktemp -d);
···
63
64
64
65
__darwinAllowLocalNetworking = true;
65
66
66
66
-
pythonImportsCheck = [
67
67
-
"devpi"
68
68
-
];
67
67
+
pythonImportsCheck = [ "devpi" ];
69
68
70
69
meta = with lib; {
71
70
description = "Client for devpi, a pypi index server and packaging meta tool";
72
71
homepage = "http://doc.devpi.net";
73
72
changelog = "https://github.com/devpi/devpi/blob/client-${version}/client/CHANGELOG";
74
73
license = licenses.mit;
75
75
-
maintainers = with maintainers; [ lewo makefu ];
74
74
+
maintainers = with maintainers; [
75
75
+
lewo
76
76
+
makefu
77
77
+
];
76
78
mainProgram = "devpi";
77
79
};
78
80
}