2017-10-25 19:04:35 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "parso";
|
2019-12-19 19:31:17 +00:00
|
|
|
version = "0.5.2";
|
2017-10-25 19:04:35 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 19:31:17 +00:00
|
|
|
sha256 = "55cf25df1a35fd88b878715874d2c4dc1ad3f0eebd1e0266a67e1f55efccfbe1";
|
2017-10-25 19:04:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Python Parser";
|
|
|
|
homepage = https://github.com/davidhalter/parso;
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
|
2018-05-24 11:19:19 +01:00
|
|
|
}
|