blob: 3ec9a6f76d7630fde501fc48ad124a15e7e09970 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
appdirs,
jedi,
prompt-toolkit,
pygments,
setuptools,
}:
buildPythonPackage rec {
pname = "ptpython";
version = "3.0.29";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-udYlGDrvk6Zz/DLL4cH8r1FBLnpPGVkFIc2syt8lGG4=";
};
build-system = [ setuptools ];
dependencies = [
appdirs
jedi
prompt-toolkit
pygments
];
# no tests to run
doCheck = false;
pythonImportsCheck = [ "ptpython" ];
meta = with lib; {
description = "Advanced Python REPL";
homepage = "https://github.com/prompt-toolkit/ptpython";
changelog = "https://github.com/prompt-toolkit/ptpython/blob/${version}/CHANGELOG";
license = licenses.bsd3;
maintainers = with maintainers; [ mlieberman85 ];
};
}
|