python3Packages.parso: disable on python 2.7

* Disabled on python 2.7
* Updated meta
* Changed to pytestCheckHook
This commit is contained in:
Drew Risinger 2020-09-09 22:07:05 -04:00 committed by Jon
parent 29ddc02847
commit 8f6436a825

View File

@ -1,24 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "parso";
version = "0.8.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "2b6db14759c528d857eeb9eac559c2166b2554548af39f5198bdfb976f72aa64";
};
checkInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
meta = {
meta = with lib; {
description = "A Python Parser";
homepage = "https://github.com/davidhalter/parso";
license = lib.licenses.mit;
homepage = "https://parso.readthedocs.io/en/latest/";
changelog = "https://github.com/davidhalter/parso/blob/master/CHANGELOG.rst";
license = licenses.mit;
};
}