Merge pull request #142398 from bcdarwin/update-threadpoolctl

python3Packages.threadpoolctl: 2.2.0 -> 3.0.0
This commit is contained in:
Mario Rodas 2021-11-15 23:50:19 -05:00 committed by GitHub
commit 6704664b0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
, isPy27
, pythonOlder
, fetchFromGitHub
, flit
, pytestCheckHook
@ -10,16 +10,16 @@
buildPythonPackage rec {
pname = "threadpoolctl";
version = "2.2.0";
version = "3.0.0";
disabled = isPy27;
disabled = pythonOlder "3.6";
format = "flit";
src = fetchFromGitHub {
owner = "joblib";
repo = pname;
rev = version;
sha256 = "7UUjbX1IpXtUAgN48Db43Zr1u360UETSUnIHD6rQRLs=";
sha256 = "02zccsiq4gvawy7q2fh3m3hvr40hl2ylmwwny6dv0lqsr2iwgnmn";
};
checkInputs = [ pytestCheckHook numpy scipy ];