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.crc: format with nixfmt
Fabian Affolter
2 years ago
10cf59f9
eca2e572
+11
-18
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
crc
default.nix
+11
-18
pkgs/development/python-modules/crc/default.nix
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, fetchFromGitHub
4
4
-
, poetry-core
5
5
-
, pytestCheckHook
6
6
-
, pythonOlder
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchFromGitHub,
5
5
+
poetry-core,
6
6
+
pytestCheckHook,
7
7
+
pythonOlder,
7
8
}:
8
9
9
10
buildPythonPackage rec {
···
20
21
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
21
22
};
22
23
23
23
-
build-system = [
24
24
-
poetry-core
25
25
-
];
24
24
+
build-system = [ poetry-core ];
26
25
27
27
-
nativeCheckInputs = [
28
28
-
pytestCheckHook
29
29
-
];
26
26
+
nativeCheckInputs = [ pytestCheckHook ];
30
27
31
31
-
pythonImportsCheck = [
32
32
-
"crc"
33
33
-
];
28
28
+
pythonImportsCheck = [ "crc" ];
34
29
35
35
-
disabledTestPaths = [
36
36
-
"test/bench"
37
37
-
];
30
30
+
disabledTestPaths = [ "test/bench" ];
38
31
39
32
meta = with lib; {
40
33
description = "Python module for calculating and verifying predefined & custom CRC's";