Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a6e8ffb7f59c
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: db31e48c5c8d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 12, 2020

  1. python.pkgs.apsw: 3.30.1-r1 -> 3.32.2-r1

    (cherry picked from commit 2f72c42)
    FRidh committed Jun 12, 2020
    Copy the full SHA
    db31e48 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/apsw/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/apsw/default.nix
Original file line number Diff line number Diff line change
@@ -3,15 +3,15 @@

buildPythonPackage rec {
pname = "apsw";
version = "3.30.1-r1";
version = "3.32.2-r1";

disabled = isPyPy;

src = fetchFromGitHub {
owner = "rogerbinns";
repo = "apsw";
rev = version;
sha256 = "1zp38gj44bmzfxxpvgd7nixkp8vs2fpl839ag8vrh9z70dax22f0";
sha256 = "0gwhcvklrgng8gg6in42h0aj2bsq522bhhs2pp3cqdrmypkjdm59";
};

buildInputs = [ sqlite ];