python312Packages.linknlink: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-02 09:44:19 +02:00
parent ff6102c701
commit 0fc80ae191

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -20,17 +21,11 @@ buildPythonPackage rec {
hash = "sha256-G0URNUHIh/td+A8MhIC0mePx2SmhEXhIzOpbVft33+w=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
cryptography
];
dependencies = [ cryptography ];
pythonImportsCheck = [
"linknlink"
];
pythonImportsCheck = [ "linknlink" ];
# Module has no test
doCheck = false;