tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.ajsonrpc: format with nixfmt
Fabian Affolter
2 years ago
87ce0c4f
45e67eb3
+8
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ajsonrpc
default.nix
+8
-9
pkgs/development/python-modules/ajsonrpc/default.nix
reviewed
···
1
1
-
{ lib
2
2
-
, pythonOlder
3
3
-
, buildPythonPackage
4
4
-
, fetchPypi
5
5
-
, pytestCheckHook
6
6
-
, setuptools
1
1
+
{
2
2
+
lib,
3
3
+
pythonOlder,
4
4
+
buildPythonPackage,
5
5
+
fetchPypi,
6
6
+
pytestCheckHook,
7
7
+
setuptools,
7
8
}:
8
9
9
10
buildPythonPackage rec {
···
19
18
hash = "sha256-eRusGPC/De4QkZRkTxUc+Lf/UpxLjWI5rEgQSjJRoZ8=";
20
19
};
21
20
22
22
-
build-system = [
23
23
-
setuptools
24
24
-
];
21
21
+
build-system = [ setuptools ];
25
22
26
23
nativeCheckInputs = [ pytestCheckHook ];
27
24