Merge pull request #128947 from fabaff/bump-aiounittest

python3Packages.aiounittest: 1.3.1 -> 1.4.0
This commit is contained in:
Sandro 2021-07-07 11:13:43 +02:00 committed by GitHub
commit 2e0fc9d73d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,20 +4,25 @@
, nose
, coverage
, isPy27
, wrapt
}:
buildPythonPackage rec {
pname = "aiounittest";
version = "1.3.1";
version = "1.4.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "kwarunek";
repo = pname;
rev = version;
sha256 = "0mlic2q49cb0vv62mixy4i4x8c91qb6jlji7khiamcxcg676nasl";
sha256 = "sha256-GbGApY4pQoFpP3RTCLdjjTnJbdz9wEXXzZRRYXgtFEM=";
};
propagatedBuildInputs = [
wrapt
];
checkInputs = [
nose
coverage
@ -27,6 +32,8 @@ buildPythonPackage rec {
nosetests
'';
pythonImportsCheck = [ "aiounittest" ];
meta = with lib; {
description = "Test asyncio code more easily";
homepage = "https://github.com/kwarunek/aiounittest";