blob: d7b8b4c7fe6d78bb6815ff3681f673023a562b15 (
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
38
39
40
|
{
lib,
aiomisc,
buildPythonPackage,
fetchPypi,
hatchling,
pytest,
}:
buildPythonPackage (finalAttrs: {
pname = "aiomisc-pytest";
version = "2.0.0";
pyproject = true;
src = fetchPypi {
pname = "aiomisc_pytest";
inherit (finalAttrs) version;
hash = "sha256-cbYrkO6YRSPFfhjgdXzuVA2wY5RyEmWcG+myGZu1TGU=";
};
pythonRelaxDeps = [ "pytest" ];
build-system = [ hatchling ];
buildInputs = [ pytest ];
dependencies = [ aiomisc ];
pythonImportsCheck = [ "aiomisc_pytest" ];
# Module has no tests
doCheck = false;
meta = {
description = "Pytest integration for aiomisc";
homepage = "https://github.com/aiokitchen/aiomisc-pytest";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
|