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

buildPythonPackage rec {
  version = "1.0.3";
  pname = "python-editor";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a3c066acee22a1c94f63938341d4fb374e3fdd69366ed6603d7b24bed1efc565";
  };

  # No proper tests
  doCheck = false;

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