Merge pull request #58842 from r-ryantm/auto-update/python3.7-shouldbe

python37Packages.shouldbe: 0.1.0 -> 0.1.2
This commit is contained in:
Robert Schütz 2019-04-05 11:09:07 +02:00 committed by GitHub
commit 65a395557c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,19 +6,17 @@
}:
buildPythonPackage rec {
version = "0.1.0";
version = "0.1.2";
pname = "shouldbe";
src = fetchPypi {
inherit pname version;
sha256 = "07pchxpv1xvjbck0xy44k3a1jrvklg0wbyccn14w0i7d135d4174";
sha256 = "16zbvjxf71dl4yfbgcr6idyim3mdrfvix1dv8b95p0s9z07372pj";
};
buildInputs = [ nose ];
checkInputs = [ nose ];
propagatedBuildInputs = [ forbiddenfruit ];
doCheck = false; # Segmentation fault on py 3.5
meta = with stdenv.lib; {
description = "Python Assertion Helpers inspired by Shouldly";
homepage = https://pypi.python.org/pypi/shouldbe/;