python3Packages.bx-python: 0.8.11 -> 0.8.12

This commit is contained in:
Justin Bedo 2021-11-30 15:46:33 +11:00 committed by Jonathan Ringer
parent 6c4f2d7399
commit 37f81936fa

View file

@ -1,16 +1,16 @@
{ lib, fetchFromGitHub, buildPythonPackage, isPy27, numpy, cython, zlib, six
{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder, numpy, cython, zlib, six
, python-lzo, nose }:
buildPythonPackage rec {
pname = "bx-python";
version = "0.8.11";
disabled = isPy27;
version = "0.8.12";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "bxlab";
repo = "bx-python";
rev = "v${version}";
sha256 = "0cz5vgw19hmkcg689vr540q2gl2lb3xcf1lphm7zbfp8wmypcadm";
sha256 = "sha256-bOoD2dY6Zf4HRMqZcGSot1owu/5VEkF6wpuMTzVUlFU=";
};
nativeBuildInputs = [ cython ];