1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

python312Packages.crc16: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-22 08:39:33 +02:00
parent 49e67fc13b
commit 06beba1300

View file

@ -1,8 +1,9 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
@ -17,16 +18,12 @@ buildPythonPackage rec {
hash = "sha256-wfhqoDkPS68H0mMbFrl5WA6uHZqXOoJs5FNToi7o05Y=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
# Tests are outdated
doCheck = false;
pythonImportsCheck = [
"crc16"
];
pythonImportsCheck = [ "crc16" ];
meta = with lib; {
description = "Python library for calculating CRC16";