1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage {
8 pname = "python-editor";
9 version = "1.0.4";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "fmoo";
14 repo = "python-editor";
15 rev = "c6cd09069371781b2b9381839849a524d25db07f";
16 hash = "sha256-TjfY7ustZaNPmndHPVwmQ8zkYPmDs/C5SNJl1zXjprc=";
17 };
18
19 # No proper tests
20 doCheck = false;
21
22 meta = with lib; {
23 description = "Library that provides the `editor` module for programmatically";
24 homepage = "https://github.com/fmoo/python-editor";
25 license = licenses.asl20;
26 };
27}