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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1gykxn16anmsbcrwhx3rrhwjif95mmwvq9gjcrr9bbzkdc8sf8a4";
  };

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