linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / bwapy / default.nix
blobf6c926cf419aaf2006734bb62f7cc11ee4474d32
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , bwa
6 , cffi
7 , zlib
8 }:
10 buildPythonPackage rec {
11   pname = "bwapy";
12   version = "0.1.4";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "090qwx3vl729zn3a7sksbviyg04kc71gpbm3nd8dalqp673x1npw";
18   };
19   postPatch = ''
20     # replace bundled bwa
21     rm -r bwa/*
22     cp ${bwa}/lib/*.a ${bwa}/include/*.h bwa/
24     substituteInPlace setup.py \
25       --replace 'setuptools>=49.2.0' 'setuptools'
26   '';
28   buildInputs = [ zlib bwa ];
30   propagatedBuildInputs = [ cffi ];
32   # no tests
33   doCheck = false;
34   pythonImportsCheck = [ "bwapy" ];
36   meta = with lib; {
37     homepage = "https://github.com/ACEnglish/acebinf";
38     description = "Python bindings to bwa mem aligner";
39     license = licenses.mpl20;
40     maintainers = with maintainers; [ ris ];
41   };