2017-07-19 11:41:57 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-02-14 07:37:28 +00:00
|
|
|
version = "1.0.4";
|
2017-07-19 11:41:57 +01:00
|
|
|
pname = "python-editor";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:28 +00:00
|
|
|
sha256 = "51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b";
|
2017-07-19 11:41:57 +01:00
|
|
|
};
|
|
|
|
|
2017-08-25 09:34:58 +01:00
|
|
|
# No proper tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-07-19 11:41:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library that provides the `editor` module for programmatically";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/fmoo/python-editor;
|
2017-08-25 09:34:58 +01:00
|
|
|
license = licenses.asl20;
|
2017-07-19 11:41:57 +01:00
|
|
|
};
|
|
|
|
}
|