Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 575 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5}: 6 7buildPythonPackage rec { 8 pname = "pyfaidx"; 9 version = "0.5.9.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "eda8af04ba4da4fd63fdc35a62e0e41dfc06aa1a511728dfbdd7707e3b382855"; 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}