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.courlan: format with nixfmt
Fabian Affolter
2 years ago
f48baca2
577710d5
+14
-19
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
courlan
default.nix
+14
-19
pkgs/development/python-modules/courlan/default.nix
···
1
-
{ lib
2
-
, babel
3
-
, buildPythonPackage
4
-
, fetchPypi
5
-
, langcodes
6
-
, pytestCheckHook
7
-
, pythonOlder
8
-
, setuptools
9
-
, tld
10
-
, urllib3
0
11
}:
12
13
buildPythonPackage rec {
···
30
--replace-fail "/tmp" "$TMPDIR"
31
'';
32
33
-
build-system = [
34
-
setuptools
35
-
];
36
37
dependencies = [
38
babel
···
41
urllib3
42
];
43
44
-
nativeCheckInputs = [
45
-
pytestCheckHook
46
-
];
47
48
# disable tests that require an internet connection
49
-
disabledTests = [
50
-
"test_urlcheck"
51
-
];
52
53
pythonImportsCheck = [ "courlan" ];
54
···
1
+
{
2
+
lib,
3
+
babel,
4
+
buildPythonPackage,
5
+
fetchPypi,
6
+
langcodes,
7
+
pytestCheckHook,
8
+
pythonOlder,
9
+
setuptools,
10
+
tld,
11
+
urllib3,
12
}:
13
14
buildPythonPackage rec {
···
31
--replace-fail "/tmp" "$TMPDIR"
32
'';
33
34
+
build-system = [ setuptools ];
0
0
35
36
dependencies = [
37
babel
···
40
urllib3
41
];
42
43
+
nativeCheckInputs = [ pytestCheckHook ];
0
0
44
45
# disable tests that require an internet connection
46
+
disabledTests = [ "test_urlcheck" ];
0
0
47
48
pythonImportsCheck = [ "courlan" ];
49