mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
pythonPackages.timezonefinder: disable on Python 2
This commit is contained in:
parent
e08c77af7a
commit
0e4457ce93
@ -1,6 +1,7 @@
|
||||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, numba
|
||||
, numpy
|
||||
}:
|
||||
@ -9,6 +10,8 @@ buildPythonPackage rec {
|
||||
pname = "timezonefinder";
|
||||
version = "4.2.0";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0q8nd279labn03dz17s4xrglk1d31q9y8wcx99l51i5cxx53zsap";
|
||||
|
Loading…
Reference in New Issue
Block a user