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: bb601869487a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ba47be3e8966
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 30, 2020

  1. litecli: 1.1.0 -> 1.3.2

    stigtsp committed Mar 30, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    af7034f View commit details

Commits on Apr 2, 2020

  1. Merge pull request #83786 from stigtsp/package/litecli-1.3.2

    litecli: 1.1.0 -> 1.3.2
    srhb authored Apr 2, 2020
    Copy the full SHA
    ba47be3 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/tools/database/litecli/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/tools/database/litecli/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

python3Packages.buildPythonApplication rec {
pname = "litecli";
version = "1.1.0";
version = "1.3.2";

# Python 2 won't have prompt_toolkit 2.x.x
# See: https://github.com/NixOS/nixpkgs/blob/f49e2ad3657dede09dc998a4a98fd5033fb52243/pkgs/top-level/python-packages.nix#L3408
disabled = python3Packages.isPy27;

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0cqil2cmnbw0jvb14v6kbr7l9yarfgy253cbb8v9znp0l4qfs7ra";
sha256 = "0bfx7fw6jnkqxa82xvd10yx1w2wbmrrqxwbh4anp5x9wnl91a9lp";
};

propagatedBuildInputs = with python3Packages; [
@@ -30,7 +30,8 @@ python3Packages.buildPythonApplication rec {
preCheck = ''
export XDG_CONFIG_HOME=$TMP
# add missing file
echo "litecli is awesome!" > tests/test.txt
mkdir -p tests/data
echo -e "t1,11\nt2,22\n" > tests/data/import_data.csv
'';

meta = with lib; {