pythonPackages.sure: 1.2.24 -> 1.4.11
Fix broken python package `sure`
This commit is contained in:
parent
af31c4ef4c
commit
12d4cc12ac
@ -1,31 +1,28 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, nose
|
, rednose
|
||||||
, six
|
, six
|
||||||
, mock
|
, mock
|
||||||
, pkgs
|
|
||||||
, isPyPy
|
, isPyPy
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "sure";
|
pname = "sure";
|
||||||
version = "1.2.24";
|
version = "1.4.11";
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1lyjq0rvkbv585dppjdq90lbkm6gyvag3wgrggjzyh7cpyh5c12w";
|
sha256 = "3c8d5271fb18e2c69e2613af1ad400d8df090f1456081635bd3171847303cdaa";
|
||||||
};
|
};
|
||||||
|
|
||||||
LC_ALL="en_US.UTF-8";
|
buildInputs = [ rednose ];
|
||||||
|
|
||||||
buildInputs = [ nose pkgs.glibcLocales ];
|
|
||||||
propagatedBuildInputs = [ six mock ];
|
propagatedBuildInputs = [ six mock ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Utility belt for automated testing";
|
description = "Utility belt for automated testing";
|
||||||
homepage = https://falcao.it/sure/;
|
homepage = https://sure.readthedocs.io/en/latest/;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user