depot/third_party/nixpkgs/pkgs/development/python-modules/python-editor/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
489 B
Nix

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