2017-07-19 03:41:57 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-08-24 10:34:20 -07:00
|
|
|
version = "1.0.3";
|
2017-07-19 03:41:57 -07:00
|
|
|
pname = "python-editor";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-08-24 10:34:20 -07:00
|
|
|
sha256 = "a3c066acee22a1c94f63938341d4fb374e3fdd69366ed6603d7b24bed1efc565";
|
2017-07-19 03:41:57 -07:00
|
|
|
};
|
|
|
|
|
2017-08-25 01:34:58 -07:00
|
|
|
# No proper tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-07-19 03:41:57 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library that provides the `editor` module for programmatically";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://github.com/fmoo/python-editor;
|
2017-08-25 01:34:58 -07:00
|
|
|
license = licenses.asl20;
|
2017-07-19 03:41:57 -07:00
|
|
|
};
|
|
|
|
}
|