diff options
| author | Weijia Wang <9713184+wegank@users.noreply.github.com> | 2024-02-08 10:52:35 +0100 |
|---|---|---|
| committer | Weijia Wang <9713184+wegank@users.noreply.github.com> | 2024-02-08 10:52:35 +0100 |
| commit | 8fef22b0e9066b17db9be0181db65bd50969e9ef (patch) | |
| tree | e5fe873216b01359315c850bdfa35e009d103907 /pkgs/development/python-modules/python-editor | |
| parent | 9a113b42b3b15eafa91a027bd9fb9fd69fa6ed96 (diff) | |
python312Packages.python-editor: 1.0.4 -> 1.0.4-unstable-2023-10-11
Diffstat (limited to 'pkgs/development/python-modules/python-editor')
| -rw-r--r-- | pkgs/development/python-modules/python-editor/default.nix | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/python-editor/default.nix b/pkgs/development/python-modules/python-editor/default.nix index 948076b5f276..40c86f3cf527 100644 --- a/pkgs/development/python-modules/python-editor/default.nix +++ b/pkgs/development/python-modules/python-editor/default.nix @@ -1,13 +1,18 @@ -{ lib, buildPythonPackage, fetchPypi }: +{ lib +, buildPythonPackage +, fetchFromGitHub +}: -buildPythonPackage rec { - version = "1.0.4"; - format = "setuptools"; +buildPythonPackage { pname = "python-editor"; + version = "1.0.4-unstable-2023-10-11"; + format = "setuptools"; - src = fetchPypi { - inherit pname version; - sha256 = "51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b"; + src = fetchFromGitHub { + owner = "fmoo"; + repo = "python-editor"; + rev = "c6cd09069371781b2b9381839849a524d25db07f"; + hash = "sha256-TjfY7ustZaNPmndHPVwmQ8zkYPmDs/C5SNJl1zXjprc="; }; # No proper tests |
