python312Packages.nanomsg-python: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-12 14:03:58 +02:00
parent bd16fcc918
commit b69b3c14a6

View File

@ -1,9 +1,10 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, nanomsg fetchFromGitHub,
, setuptools nanomsg,
, pythonOlder setuptools,
pythonOlder,
}: }:
buildPythonPackage { buildPythonPackage {
@ -20,20 +21,14 @@ buildPythonPackage {
hash = "sha256-NHurZWiW/Csp6NyuSV+oD16+L2uPUZWGzb2nWi9b/uE="; hash = "sha256-NHurZWiW/Csp6NyuSV+oD16+L2uPUZWGzb2nWi9b/uE=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
buildInputs = [ buildInputs = [ nanomsg ];
nanomsg
];
# Tests requires network connections # Tests requires network connections
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "nanomsg" ];
"nanomsg"
];
meta = with lib; { meta = with lib; {
description = "Bindings for nanomsg"; description = "Bindings for nanomsg";