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