at 22.05-pre 950 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, pytest 5}: 6 7buildPythonPackage rec { 8 pname = "PyVCF"; 9 version = "0.6.8"; 10 11 src = fetchFromGitHub { 12 owner = "jamescasbon"; 13 repo = "PyVCF"; 14 rev = "476169cd457ba0caa6b998b301a4d91e975251d9"; 15 sha256 = "0qf9lwj7r2hjjp4bd4vc7nayrhblfm4qcqs4dbd43a6p4bj2jv5p"; 16 }; 17 18 checkInputs = [ pytest ]; 19 20 meta = with lib; { 21 homepage = "https://pyvcf.readthedocs.io/en/latest/index.html"; 22 description = "A VCF (Variant Call Format) Parser for Python, supporting version 4.0 and 4.1"; 23 license = licenses.bsd3; 24 maintainers = with maintainers; [ scalavision ]; 25 longDescription = '' 26 The intent of this module is to mimic the csv module in the Python stdlib, 27 as opposed to more flexible serialization formats like JSON or YAML. 28 vcf will attempt to parse the content of each record based on the data 29 types specified in the meta-information lines 30 ''; 31 }; 32}