mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 00:34:00 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyVCF";
|
|
version = "0.6.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jamescasbon";
|
|
repo = "PyVCF";
|
|
rev = "476169cd457ba0caa6b998b301a4d91e975251d9";
|
|
sha256 = "0qf9lwj7r2hjjp4bd4vc7nayrhblfm4qcqs4dbd43a6p4bj2jv5p";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytest ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pyvcf.readthedocs.io/en/latest/index.html";
|
|
description = "A VCF (Variant Call Format) Parser for Python, supporting version 4.0 and 4.1";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ scalavision ];
|
|
longDescription = ''
|
|
The intent of this module is to mimic the csv module in the Python stdlib,
|
|
as opposed to more flexible serialization formats like JSON or YAML.
|
|
vcf will attempt to parse the content of each record based on the data
|
|
types specified in the meta-information lines
|
|
'';
|
|
broken = true; # uses the 2to3 feature, that got removed in setuptools 0.58
|
|
};
|
|
}
|