python3.pkgs.tempora: no longer compatible with python2

This commit is contained in:
Jörg Thalheim 2020-06-25 12:27:54 +01:00
parent 0153111575
commit b422dd62ce
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92

View File

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi
, setuptools_scm, pytest, pytest-freezegun, freezegun, backports_unittest-mock
, six, pytz, jaraco_functools }:
, six, pytz, jaraco_functools, pythonOlder }:
buildPythonPackage rec {
pname = "tempora";
@ -11,6 +11,8 @@ buildPythonPackage rec {
sha256 = "e370d822cf48f5356aab0734ea45807250f5120e291c76712a1d766b49ae34f8";
};
disabled = pythonOlder "3.2";
nativeBuildInputs = [ setuptools_scm ];
patches = [