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.attrdict: format with nixfmt
Fabian Affolter
2 years ago
7f6b573d
974a3a22
+11
-16
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
attrdict
default.nix
+11
-16
pkgs/development/python-modules/attrdict/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchPypi
4
-
, pytestCheckHook
5
-
, pythonOlder
6
-
, setuptools
7
-
, six
0
8
}:
9
10
buildPythonPackage rec {
···
30
--replace-fail "from collections" "from collections.abc"
31
'';
32
33
-
build-system = [
34
-
setuptools
35
-
];
36
37
-
dependencies = [
38
-
six
39
-
];
40
41
# Tests are not shipped and source is not tagged
42
doCheck = false;
43
44
-
pythonImportsCheck = [
45
-
"attrdict"
46
-
];
47
48
meta = with lib; {
49
description = "A dict with attribute-style access";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchPypi,
5
+
pytestCheckHook,
6
+
pythonOlder,
7
+
setuptools,
8
+
six,
9
}:
10
11
buildPythonPackage rec {
···
31
--replace-fail "from collections" "from collections.abc"
32
'';
33
34
+
build-system = [ setuptools ];
0
0
35
36
+
dependencies = [ six ];
0
0
37
38
# Tests are not shipped and source is not tagged
39
doCheck = false;
40
41
+
pythonImportsCheck = [ "attrdict" ];
0
0
42
43
meta = with lib; {
44
description = "A dict with attribute-style access";