nixpkgs/pkgs/development/python-modules/pyfaidx/default.nix
2019-12-15 16:23:15 +01:00

25 lines
573 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "pyfaidx";
version = "0.5.7";
src = fetchPypi {
inherit pname version;
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 ];
};
}