1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5}:
6
7buildPythonPackage rec {
8 pname = "parso";
9 version = "0.5.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "55cf25df1a35fd88b878715874d2c4dc1ad3f0eebd1e0266a67e1f55efccfbe1";
14 };
15
16 checkInputs = [ pytest ];
17
18 meta = {
19 description = "A Python Parser";
20 homepage = https://github.com/davidhalter/parso;
21 license = lib.licenses.mit;
22 };
23
24}