nixpkgs/pkgs/development/python-modules/python-editor/default.nix

22 lines
529 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
2017-08-24 17:34:20 +00:00
version = "1.0.3";
pname = "python-editor";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-08-24 17:34:20 +00:00
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;
};
}