mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
pythonPackages.openpyxl: disable for python2
This commit is contained in:
parent
b63ef1ae0b
commit
6dc311dbce
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, pytest
|
||||
, jdcal
|
||||
, et_xmlfile
|
||||
@ -10,6 +11,7 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "openpyxl";
|
||||
version = "3.0.0";
|
||||
disabled = isPy27; # 2.6.4 was final python2 release
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
@ -35,4 +37,4 @@ buildPythonPackage rec {
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ lihop sjourdois ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user