blob: 03f5ed36644e24073272a48033104e3110241644 (
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,
setuptools,
}:
buildPythonPackage rec {
pname = "pysnooper";
version = "1.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "cool-RR";
repo = "PySnooper";
tag = version;
hash = "sha256-+Cjqi0xkWO4QVAZymmcper4dal9pNWbpPgPY4UzbXfA=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pysnooper" ];
meta = {
description = "Poor man's debugger for Python";
homepage = "https://github.com/cool-RR/PySnooper";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ seqizz ];
};
}
|