blob: 911fd0debdd229ecb71a33b812d8ae5af1e80a21 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
responses,
}:
buildPythonPackage rec {
pname = "pytest-responses";
version = "0.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "getsentry";
repo = "pytest-responses";
rev = "refs/tags/${version}";
hash = "sha256-6QAiNWCJbo4rmaByrc8VNw39/eF3uqFOss3GJuCvpZg=";
};
build-system = [ setuptools ];
dependencies = [ responses ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pytest_responses" ];
meta = {
description = "Plugin for py.test response";
homepage = "https://github.com/getsentry/pytest-responses";
changelog = "https://github.com/getsentry/pytest-responses/blob/${version}/CHANGES";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ tochiaha ];
mainProgram = "pytest-reponses";
};
}
|