1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5}:
6
7buildPythonPackage rec {
8 pname = "parso";
9 version = "0.3.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "35704a43a3c113cce4de228ddb39aab374b8004f4f2407d070b6a2ca784ce8a2";
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}