python312Packages.pyfaidx: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-13 20:37:52 +02:00
parent b1ada7d9cc
commit f500ab7ac2
@@ -1,13 +1,14 @@
{ lib
, buildPythonPackage
, fetchPypi
, glibcLocales
, importlib-metadata
, numpy
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
{
lib,
buildPythonPackage,
fetchPypi,
glibcLocales,
importlib-metadata,
numpy,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
@@ -27,9 +28,7 @@ buildPythonPackage rec {
setuptools-scm
];
dependencies = [
importlib-metadata
];
dependencies = [ importlib-metadata ];
nativeCheckInputs = [
glibcLocales
@@ -42,9 +41,7 @@ buildPythonPackage rec {
"tests/test_Fasta_bgzip.py"
];
pythonImportsCheck = [
"pyfaidx"
];
pythonImportsCheck = [ "pyfaidx" ];
meta = with lib; {
description = "Python classes for indexing, retrieval, and in-place modification of FASTA files using a samtools compatible index";