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

Commits on Nov 12, 2017

  1. Copy the full SHA
    86ffe92 View commit details
  2. Merge pull request #31554 from xvapx/libnacl

    pythonPackages.libnacl: 1.6.0 -> 1.6.1
    FRidh authored Nov 12, 2017
    Copy the full SHA
    74c92a3 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/libnacl/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/libnacl/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

buildPythonPackage rec {
pname = "libnacl";
version = "1.6.0";
version = "1.6.1";
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "saltstack";
repo = pname;
rev = "v${version}";
sha256 = "0iaql3mrj3hf48km8177bi6nmjdar26kmqjc3jw8mrjc940v99fk";
sha256 = "05iamhbsqm8binqhc2zchfqdkajlx2icf8xl5vkd5fbrhw6yylad";
};

buildInputs = [ pytest ];