mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
pythonPackages.pytest-httpx: init at 0.10.1
This commit is contained in:
parent
c2b3dda317
commit
05f43031d2
26
pkgs/development/python-modules/pytest-httpx/default.nix
Normal file
26
pkgs/development/python-modules/pytest-httpx/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, httpx, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-httpx";
|
||||
version = "0.10.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "pytest_httpx";
|
||||
extension = "tar.gz";
|
||||
sha256 = "13ld6nnsc3f7i4zl4qm1jh358z0awr6xfk05azwgngmjb7jmcz0a";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ httpx pytest ];
|
||||
|
||||
# not in pypi tarball
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pytest_httpx" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Send responses to httpx";
|
||||
homepage = "https://github.com/Colin-b/pytest_httpx";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
|
@ -6163,6 +6163,8 @@ in {
|
|||
|
||||
pytest-httpserver = callPackage ../development/python-modules/pytest-httpserver { };
|
||||
|
||||
pytest-httpx = callPackage ../development/python-modules/pytest-httpx { };
|
||||
|
||||
pytest-instafail = callPackage ../development/python-modules/pytest-instafail { };
|
||||
|
||||
pytest-isort = callPackage ../development/python-modules/pytest-isort { };
|
||||
|
|
Loading…
Reference in a new issue