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