Merge pull request #51140 from costrouc/costrouc/python-sure-update

pythonPackages.sure: 1.2.24 -> 1.4.11
This commit is contained in:
worldofpeace 2018-11-27 18:44:22 -05:00 committed by GitHub
commit 544d060f70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;
};