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

Commits on Aug 7, 2018

  1. pybitmessage: 0.6.2 -> 0.6.3.2

    (cherry picked from commit 28fe904)
    fgaz authored and Robert Schütz committed Aug 7, 2018
    Copy the full SHA
    ad66494 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/networking/instant-messengers/pybitmessage/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@
pythonPackages.buildPythonApplication rec {
name = "pybitmessage-${version}";

version = "0.6.2";
version = "0.6.3.2";

src = fetchFromGitHub {
owner = "bitmessage";
repo = "PyBitmessage";
rev = "v${version}";
sha256 = "04sgns9qczzw2152gqdr6bjyy4fmgs26cz8n3qck94l0j51rxhz8";
rev = version;
sha256 = "1lmhbpwsqh1v93krlqqhafw2pc3y0qp8zby186yllbph6s8kdp35";
};

propagatedBuildInputs = with pythonPackages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];