python312Packages.bwrapy: disable

This commit is contained in:
Martin Weinelt
2023-12-20 20:46:16 +01:00
parent ab8a19b82f
commit 29c6191f75
@@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, pythonOlder
, fetchPypi
, bwa
@@ -11,7 +12,9 @@ buildPythonPackage rec {
pname = "bwapy";
version = "0.1.4";
format = "setuptools";
disabled = pythonOlder "3.6";
# uses the removed imp module
disabled = pythonOlder "3.6" || pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;
@@ -35,7 +38,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "bwapy" ];
meta = with lib; {
homepage = "https://github.com/ACEnglish/acebinf";
homepage = "https://github.com/ACEnglish/bwapy";
description = "Python bindings to bwa mem aligner";
license = licenses.mpl20;
maintainers = with maintainers; [ ris ];