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