Merge pull request #113254 from r-ryantm/auto-update/bmap-tools

bmap-tools: 3.4 -> 3.6
This commit is contained in:
Daniël de Kok 2021-02-17 08:50:41 +01:00 committed by GitHub
commit 07022c8f10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,18 @@
{ lib, fetchFromGitHub, python2Packages }: { lib, fetchFromGitHub, python3Packages }:
python2Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "bmap-tools"; pname = "bmap-tools";
version = "3.4"; version = "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "intel"; owner = "intel";
repo = "bmap-tools"; repo = "bmap-tools";
rev = "v${version}"; rev = "v${version}";
sha256 = "0p0pdwvyf9b4czi1pnhclm1ih8kw78nk2sj4if5hwi7s5423wk5q"; sha256 = "01xzrv5nvd2nvj91lz4x9s91y9825j9pj96z0ap6yvy3w2dgvkkl";
}; };
propagatedBuildInputs = with python3Packages; [ six ];
# tests fail only on hydra. # tests fail only on hydra.
doCheck = false; doCheck = false;