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

Commits on Mar 7, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    7ec3142 View commit details

Commits on Mar 11, 2019

  1. Merge pull request #57050 from dtzWill/update/m2crypto-0.32.0

    pythonPackages.m2crypto: 0.30.1 -> 0.32.0
    andir authored Mar 11, 2019
    Copy the full SHA
    2dd3253 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/m2crypto/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/m2crypto/default.nix
Original file line number Diff line number Diff line change
@@ -9,12 +9,12 @@


buildPythonPackage rec {
version = "0.30.1";
version = "0.32.0";
pname = "M2Crypto";

src = fetchPypi {
inherit pname version;
sha256 = "a1b2751cdadc6afac3df8a5799676b7b7c67a6ad144bb62d38563062e7cd3fc6";
sha256 = "09d3zs2ivyxbi0fa42mnan0fcplc08q2qd70p1b43sxxdbxcdj99";
};

patches = [
@@ -38,7 +38,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
description = "A Python crypto and SSL toolkit";
homepage = http://chandlerproject.org/Projects/MeTooCrypto;
homepage = https://gitlab.com/m2crypto/m2crypto;
license = licenses.mit;
maintainers = with maintainers; [ andrew-d ];
};