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