pythonPackages.convertdate: dropped support for Python 2
This commit is contained in:
parent
29b0d4d0b6
commit
fd67fc5dd4
|
@ -1,5 +1,6 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, isPy27
|
||||
, fetchFromGitHub
|
||||
, pymeeus
|
||||
, pytz
|
||||
|
@ -10,6 +11,8 @@ buildPythonPackage rec {
|
|||
pname = "convertdate";
|
||||
version = "2.3.0";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
# Tests are not available in the PyPI tarball so use GitHub instead.
|
||||
src = fetchFromGitHub {
|
||||
owner = "fitnr";
|
||||
|
|
Loading…
Reference in New Issue