summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-editor/default.nix
blob: 19efcb89d3d388616e3a3ce945a8a988af06d8db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  version = "1.0.4";
  pname = "python-editor";

  src = fetchPypi {
    inherit pname version;
    sha256 = "51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b";
  };

  # No proper tests
  doCheck = false;

  meta = with lib; {
    description = "A library that provides the `editor` module for programmatically";
    homepage = "https://github.com/fmoo/python-editor";
    license = licenses.asl20;
  };
}