1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "pyfaidx";
9 version = "0.6.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "d1258f8d053cba0c90fe329254e8ec59eb28b535b48d9d06e8c7f1d74b8e4531";
14 };
15
16 propagatedBuildInputs = [ six ];
17
18 meta = with lib; {
19 homepage = "https://github.com/mdshw5/pyfaidx";
20 description = "Python classes for indexing, retrieval, and in-place modification of FASTA files using a samtools compatible index";
21 license = licenses.bsd3;
22 maintainers = [ maintainers.jbedo ];
23 };
24}