blob: 0a7eaabb2100a4df07a502dc3a126e9a63018af7 (
plain)
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
|
{
buildPythonPackage,
lib,
fetchFromGitHub,
setuptools-scm,
callPackage,
}:
buildPythonPackage rec {
pname = "pluggy";
version = "1.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "pytest-dev";
repo = "pluggy";
tag = version;
hash = "sha256-pkQjPJuSASWmzwzp9H/UTJBQDr2r2RiofxpF135lAgc=";
};
build-system = [ setuptools-scm ];
# To prevent infinite recursion with pytest
doCheck = false;
passthru.tests = {
pytest = callPackage ./tests.nix { };
};
meta = {
changelog = "https://github.com/pytest-dev/pluggy/blob/${src.rev}/CHANGELOG.rst";
description = "Plugin and hook calling mechanisms for Python";
homepage = "https://github.com/pytest-dev/pluggy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|