depot/third_party/nixpkgs/pkgs/development/python-modules/pyfaidx/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

24 lines
575 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "pyfaidx";
version = "0.5.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "eda8af04ba4da4fd63fdc35a62e0e41dfc06aa1a511728dfbdd7707e3b382855";
};
propagatedBuildInputs = [ six ];
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 = [ maintainers.jbedo ];
};
}