blob: 95aee81f45de03ed32fbcf0d2d9c5ebbb355c369 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "events";
version = "0.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "pyeve";
repo = "events";
tag = "v${version}";
hash = "sha256-GGhIKHbJ31IN0Uoe689X9V/MZvtseE47qx2CmM4MYUs=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "events" ];
enabledTestPaths = [ "events/tests/tests.py" ];
meta = {
description = "Bringing the elegance of C# EventHanlder to Python";
homepage = "https://events.readthedocs.org";
changelog = "https://github.com/pyeve/events/blob/v0.5/CHANGES";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|