tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pytest-recording: refactor
natsukium
9 months ago
eaebf83d
321edb4a
+8
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest-recording
default.nix
+8
-7
pkgs/development/python-modules/pytest-recording/default.nix
···
17
17
buildPythonPackage rec {
18
18
pname = "pytest-recording";
19
19
version = "0.13.4";
20
20
-
format = "pyproject";
20
20
+
pyproject = true;
21
21
22
22
src = fetchFromGitHub {
23
23
owner = "kiwicom";
···
25
25
tag = "v${version}";
26
26
hash = "sha256-S++MnI0GgpQxS6kFkt05kcE4JMW7jyFjJ3o7DhfYoVA=";
27
27
};
28
28
+
29
29
+
build-system = [ hatchling ];
28
30
29
31
buildInputs = [
30
30
-
hatchling
31
32
pytest
32
33
];
33
34
34
34
-
propagatedBuildInputs = [ vcrpy ];
35
35
+
dependencies = [ vcrpy ];
35
36
36
37
__darwinAllowLocalNetworking = true;
37
38
38
38
-
checkInputs = [
39
39
+
nativeCheckInputs = [
39
40
pytestCheckHook
40
41
pytest-httpbin
41
42
pytest-mock
···
53
54
54
55
pythonImportsCheck = [ "pytest_recording" ];
55
56
56
56
-
meta = with lib; {
57
57
+
meta = {
57
58
description = "Pytest plugin that allows you recording of network interactions via VCR.py";
58
59
homepage = "https://github.com/kiwicom/pytest-recording";
59
59
-
license = licenses.mit;
60
60
-
maintainers = with maintainers; [ jbgosselin ];
60
60
+
license = lib.licenses.mit;
61
61
+
maintainers = with lib.maintainers; [ jbgosselin ];
61
62
};
62
63
}