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.localzone: format with nixfmt
Fabian Affolter
2 years ago
e43d3eb9
b167e571
+12
-19
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
localzone
default.nix
+12
-19
pkgs/development/python-modules/localzone/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchFromGitHub
4
-
, dnspython
5
-
, pytestCheckHook
6
-
, setuptools
7
-
, pythonOlder
0
8
}:
9
10
buildPythonPackage rec {
···
21
hash = "sha256-quAo5w4Oxu9Hu96inu3vuiQ9GZMLpq0M8Vj67IPYcbE=";
22
};
23
24
-
build-system = [
25
-
setuptools
26
-
];
27
28
-
dependencies = [
29
-
dnspython
30
-
];
31
32
-
nativeCheckInputs = [
33
-
pytestCheckHook
34
-
];
35
36
-
pythonImportsCheck = [
37
-
"localzone"
38
-
];
39
40
meta = with lib; {
41
description = "A simple DNS library for managing zone files";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchFromGitHub,
5
+
dnspython,
6
+
pytestCheckHook,
7
+
setuptools,
8
+
pythonOlder,
9
}:
10
11
buildPythonPackage rec {
···
22
hash = "sha256-quAo5w4Oxu9Hu96inu3vuiQ9GZMLpq0M8Vj67IPYcbE=";
23
};
24
25
+
build-system = [ setuptools ];
0
0
26
27
+
dependencies = [ dnspython ];
0
0
28
29
+
nativeCheckInputs = [ pytestCheckHook ];
0
0
30
31
+
pythonImportsCheck = [ "localzone" ];
0
0
32
33
meta = with lib; {
34
description = "A simple DNS library for managing zone files";