nixpkgs/pkgs/development/python-modules/pytest-sanic/default.nix
2019-10-27 16:26:51 +01:00

34 lines
627 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, aiohttp
, async_generator
}:
buildPythonPackage rec {
pname = "pytest-sanic";
version = "1.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "61a60e1b0456b2ceaeeb7173783f3450332c3609017fb6b18176b307f7186d3a";
};
propagatedBuildInputs = [
pytest
aiohttp
async_generator
];
# circular dependency on sanic
doCheck = false;
meta = with lib; {
description = "A pytest plugin for Sanic";
homepage = https://github.com/yunstanford/pytest-sanic/;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}