pythonPackages.parsedatetime: disable python2

gstqt5
Jonathan Ringer 2020-08-29 12:06:24 -07:00 committed by Frederik Rietdijk
parent 973d4dd39e
commit 959c24fc7c
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, pytestrunner
, future
@ -9,6 +10,7 @@
buildPythonPackage rec {
pname = "parsedatetime";
version = "2.6";
disabled = isPy27; # no longer compatible with icu package
src = fetchPypi {
inherit pname version;