blob: f38a202970609b1c149300a3ce5bff9e92698680 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "parso";
version = "0.8.5";
pyproject = true;
src = fetchFromGitHub {
owner = "davidhalter";
repo = "parso";
tag = "v${version}";
hash = "sha256-faSXCrOkybLr0bboF/8rPV/Humq8s158A3UOpdlYi0I=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Python Parser";
homepage = "https://parso.readthedocs.io/en/latest/";
changelog = "https://github.com/davidhalter/parso/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.mit;
};
}
|