Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8d603be22dfc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d5c5c5c4d19d
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 7, 2018

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    a7c122b View commit details

Commits on Nov 10, 2018

  1. Merge pull request #49827 from Twey/click-repl

    pythonPackages.click-repl: init at 0.1.6
    infinisil authored Nov 10, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d5c5c5c View commit details
Showing with 22 additions and 0 deletions.
  1. +20 −0 pkgs/development/python-modules/click-repl/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/click-repl/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, click, prompt_toolkit }:

buildPythonPackage rec {
pname = "click-repl";
version = "0.1.6";

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

propagatedBuildInputs = [ click prompt_toolkit ];

meta = with stdenv.lib; {
homepage = https://github.com/click-contrib/click-repl;
description = "Subcommand REPL for click apps";
license = licenses.mit;
maintainers = with maintainers; [ twey ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -1148,6 +1148,8 @@ in {

click-plugins = callPackage ../development/python-modules/click-plugins {};

click-repl = callPackage ../development/python-modules/click-repl { };

click-threading = callPackage ../development/python-modules/click-threading {};

cligj = callPackage ../development/python-modules/cligj { };