1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 version = "1.0.3";
5 pname = "python-editor";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "a3c066acee22a1c94f63938341d4fb374e3fdd69366ed6603d7b24bed1efc565";
10 };
11
12 # No proper tests
13 doCheck = false;
14
15 meta = with stdenv.lib; {
16 description = "A library that provides the `editor` module for programmatically";
17 homepage = https://github.com/fmoo/python-editor;
18 license = licenses.asl20;
19 };
20}