My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-editor/default.nix

20 lines
489 B

{ lib, 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;
};
}