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.asyncstdlib: format with nixfmt
Fabian Affolter
2 years ago
4e96fb5b
99ae272a
+10
-15
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
asyncstdlib
default.nix
+10
-15
pkgs/development/python-modules/asyncstdlib/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchFromGitHub
4
-
, flit-core
5
-
, pytestCheckHook
6
-
, pythonOlder
0
7
}:
8
9
buildPythonPackage rec {
···
20
hash = "sha256-OLb4+7FFeVDW0ePyVJW8aaosouxlU/4Uq2ktvVLpDFY=";
21
};
22
23
-
build-system = [
24
-
flit-core
25
-
];
26
27
-
nativeCheckInputs = [
28
-
pytestCheckHook
29
-
];
30
31
-
pythonImportsCheck = [
32
-
"asyncstdlib"
33
-
];
34
35
meta = with lib; {
36
description = "Python library that extends the Python asyncio standard library";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchFromGitHub,
5
+
flit-core,
6
+
pytestCheckHook,
7
+
pythonOlder,
8
}:
9
10
buildPythonPackage rec {
···
21
hash = "sha256-OLb4+7FFeVDW0ePyVJW8aaosouxlU/4Uq2ktvVLpDFY=";
22
};
23
24
+
build-system = [ flit-core ];
0
0
25
26
+
nativeCheckInputs = [ pytestCheckHook ];
0
0
27
28
+
pythonImportsCheck = [ "asyncstdlib" ];
0
0
29
30
meta = with lib; {
31
description = "Python library that extends the Python asyncio standard library";