python3Packages.aiounittest: 1.3.1 -> 1.4.0
This commit is contained in:
parent
f75e2a648c
commit
6f609a1f12
1 changed files with 9 additions and 2 deletions
|
@ -4,20 +4,25 @@
|
||||||
, nose
|
, nose
|
||||||
, coverage
|
, coverage
|
||||||
, isPy27
|
, isPy27
|
||||||
|
, wrapt
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aiounittest";
|
pname = "aiounittest";
|
||||||
version = "1.3.1";
|
version = "1.4.0";
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "kwarunek";
|
owner = "kwarunek";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0mlic2q49cb0vv62mixy4i4x8c91qb6jlji7khiamcxcg676nasl";
|
sha256 = "sha256-GbGApY4pQoFpP3RTCLdjjTnJbdz9wEXXzZRRYXgtFEM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
wrapt
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
nose
|
nose
|
||||||
coverage
|
coverage
|
||||||
|
@ -27,6 +32,8 @@ buildPythonPackage rec {
|
||||||
nosetests
|
nosetests
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "aiounittest" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Test asyncio code more easily";
|
description = "Test asyncio code more easily";
|
||||||
homepage = "https://github.com/kwarunek/aiounittest";
|
homepage = "https://github.com/kwarunek/aiounittest";
|
||||||
|
|
Loading…
Reference in a new issue