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

Commits on Nov 27, 2018

  1. pythonPackages.sure: 1.2.24 -> 1.4.11

    Fix broken python package `sure`
    costrouc committed Nov 27, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    12d4cc1 View commit details
  2. Merge pull request #51140 from costrouc/costrouc/python-sure-update

    pythonPackages.sure: 1.2.24 -> 1.4.11
    worldofpeace authored Nov 27, 2018
    Copy the full SHA
    544d060 View commit details
Showing with 5 additions and 8 deletions.
  1. +5 −8 pkgs/development/python-modules/sure/default.nix
13 changes: 5 additions & 8 deletions pkgs/development/python-modules/sure/default.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, rednose
, six
, mock
, pkgs
, isPyPy
}:

buildPythonPackage rec {
pname = "sure";
version = "1.2.24";
version = "1.4.11";
disabled = isPyPy;

src = fetchPypi {
inherit pname version;
sha256 = "1lyjq0rvkbv585dppjdq90lbkm6gyvag3wgrggjzyh7cpyh5c12w";
sha256 = "3c8d5271fb18e2c69e2613af1ad400d8df090f1456081635bd3171847303cdaa";
};

LC_ALL="en_US.UTF-8";

buildInputs = [ nose pkgs.glibcLocales ];
buildInputs = [ rednose ];
propagatedBuildInputs = [ six mock ];

meta = with stdenv.lib; {
description = "Utility belt for automated testing";
homepage = https://falcao.it/sure/;
homepage = https://sure.readthedocs.io/en/latest/;
license = licenses.gpl3Plus;
};