nixpkgs/pkgs/development/python-modules/pyfaidx/default.nix
Martin Weinelt 67884e4e9a
python3Packages.pyfaidx: disable failing tests
Disables a test file that requires test data that isn't part of the
sdist or git repository.
2022-04-20 03:09:57 +02:00

53 lines
982 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
, numpy
, setuptools-scm
, six
, glibcLocales
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyfaidx";
version = "0.6.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-e6O9yx30unSfdmWzTmoFKqToQkBqDflebfRxfMEj85I=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
six
];
checkInputs = [
glibcLocales
nose
numpy
pytestCheckHook
];
disabledTestPaths = [
# FileNotFoundError: [Errno 2] No such file or directory: 'data/genes.fasta.gz'
"tests/test_Fasta_bgzip.py"
];
pythonImportsCheck = [
"pyfaidx"
];
meta = with lib; {
homepage = "https://github.com/mdshw5/pyfaidx";
description = "Python classes for indexing, retrieval, and in-place modification of FASTA files using a samtools compatible index";
license = licenses.bsd3;
maintainers = with maintainers; [ jbedo ];
};
}