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: refactor
Fabian Affolter
2 years ago
eca2e572
1b8a657c
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
crc
default.nix
+3
-3
pkgs/development/python-modules/crc/default.nix
···
20
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
21
};
22
23
-
nativeBuildInputs = [
24
poetry-core
25
];
26
···
37
];
38
39
meta = with lib; {
40
-
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
41
description = "Python module for calculating and verifying predefined & custom CRC's";
42
-
mainProgram = "crc";
43
homepage = "https://nicoretti.github.io/crc/";
0
44
license = licenses.bsd2;
45
maintainers = with maintainers; [ jleightcap ];
0
46
};
47
}
···
20
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
21
};
22
23
+
build-system = [
24
poetry-core
25
];
26
···
37
];
38
39
meta = with lib; {
0
40
description = "Python module for calculating and verifying predefined & custom CRC's";
0
41
homepage = "https://nicoretti.github.io/crc/";
42
+
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
43
license = licenses.bsd2;
44
maintainers = with maintainers; [ jleightcap ];
45
+
mainProgram = "crc";
46
};
47
}