1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 version = "1.0.4"; 5 pname = "python-editor"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b"; 10 }; 11 12 # No proper tests 13 doCheck = false; 14 15 meta = with 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}