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