pythonPackages.pytest-asyncio: init at 0.5.0
This commit is contained in:
parent
df79a19638
commit
0743b0fb6e
19
pkgs/development/python-modules/pytest-asyncio/default.nix
Normal file
19
pkgs/development/python-modules/pytest-asyncio/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchurl, pytest }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "pytest-asyncio";
|
||||||
|
version = "0.5.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/p/${pname}/${name}.tar.gz";
|
||||||
|
sha256 = "03sxq8fglr4lw4y6wqlbli9ypr65fxzx6hlpn5wpccx8v5472iff";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pytest ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "library for testing asyncio code with pytest";
|
||||||
|
license = licenses.asl20;
|
||||||
|
homepage = https://github.com/pytest-dev/pytest-asyncio;
|
||||||
|
};
|
||||||
|
}
|
@ -5202,6 +5202,8 @@ in {
|
|||||||
|
|
||||||
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };
|
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };
|
||||||
|
|
||||||
|
pytest-asyncio = callPackage ../development/python-modules/pytest-asyncio { };
|
||||||
|
|
||||||
pytestcache = buildPythonPackage rec {
|
pytestcache = buildPythonPackage rec {
|
||||||
name = "pytest-cache-1.0";
|
name = "pytest-cache-1.0";
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user