pythonPackages.pyfaidx: init at 0.5.5.2
This commit is contained in:
parent
5859c5b472
commit
4bb197f4b2
|
@ -0,0 +1,24 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyfaidx";
|
||||||
|
version = "0.5.5.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1akc8hk8rlw7sv07bv1n2r471acvmxwc57gb69frjpcwggf2phls";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -722,6 +722,8 @@ in {
|
||||||
|
|
||||||
pyfakefs = callPackage ../development/python-modules/pyfakefs {};
|
pyfakefs = callPackage ../development/python-modules/pyfakefs {};
|
||||||
|
|
||||||
|
pyfaidx = callPackage ../development/python-modules/pyfaidx { };
|
||||||
|
|
||||||
pyfttt = callPackage ../development/python-modules/pyfttt { };
|
pyfttt = callPackage ../development/python-modules/pyfttt { };
|
||||||
|
|
||||||
pyftdi = callPackage ../development/python-modules/pyftdi { };
|
pyftdi = callPackage ../development/python-modules/pyftdi { };
|
||||||
|
|
Loading…
Reference in New Issue