linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyvcf / default.nix
blob7c513617754fb993d6ea36f0b744e636dd44fd8e
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "PyVCF";
9   version = "0.6.8";
11   src = fetchFromGitHub {
12     owner = "jamescasbon";
13     repo = "PyVCF";
14     rev = "476169cd457ba0caa6b998b301a4d91e975251d9";
15     sha256 = "0qf9lwj7r2hjjp4bd4vc7nayrhblfm4qcqs4dbd43a6p4bj2jv5p";
16   };
18   checkInputs = [ pytest ];
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   };