nixpkgs/pkgs/development/python-modules/pyfaidx/default.nix

25 lines
573 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "pyfaidx";
2019-12-10 18:07:41 +00:00
version = "0.5.7";
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:41 +00:00
sha256 = "512c409b36eadfe39c40e46112d8f96b29fdc1032dc424da2bdc783d476f5b0a";
};
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 ];
};
}