python312Packages.mitogen: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 23:05:48 +02:00
parent 0e22c90c4c
commit aabb62d73e
1 changed files with 8 additions and 11 deletions

View File

@ -1,8 +1,9 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -19,16 +20,12 @@ buildPythonPackage rec {
hash = "sha256-zQTto4SGPvQIXPAcTQx8FA+n/5RcpqKKn0UqlFM2yqI=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
# Tests require network access and Docker support
doCheck = false;
pythonImportsCheck = [
"mitogen"
];
pythonImportsCheck = [ "mitogen" ];
meta = with lib; {
description = "Python Library for writing distributed self-replicating programs";