mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 13:05:08 +00:00
python27.pkgs.joblib: Disable package
The version 0.16.0 doesn't support Python older than 3.6.
This commit is contained in:
parent
9232ca2ac1
commit
2b55bb4338
@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, pythonOlder
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, stdenv
|
||||
@ -13,6 +14,7 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "joblib";
|
||||
version = "0.16.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
Loading…
Reference in New Issue
Block a user