2017-10-25 11:04:35 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "parso";
|
2020-08-16 10:31:09 -07:00
|
|
|
version = "0.8.0";
|
2017-10-25 11:04:35 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 10:31:09 -07:00
|
|
|
sha256 = "2b6db14759c528d857eeb9eac559c2166b2554548af39f5198bdfb976f72aa64";
|
2017-10-25 11:04:35 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Python Parser";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/davidhalter/parso";
|
2017-10-25 11:04:35 -07:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
|
2018-05-24 03:19:19 -07:00
|
|
|
}
|