nixpkgs/pkgs/development/python-modules/pysnooper/default.nix
Fabian Affolter f3aa17de86
python3Packages.pysnooper: disable on older Python releases
- switch to pytestCheckHook
- add pythonImportsCheck
2022-04-03 09:27:41 +02:00

36 lines
645 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pysnooper";
version = "1.1.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit version;
pname = "PySnooper";
hash = "sha256-0X3JHMoVk8ECMNzkXkax0/8PiRDww46UHt9roSYLOCA=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pysnooper"
];
meta = with lib; {
description = "A poor man's debugger for Python";
homepage = "https://github.com/cool-RR/PySnooper";
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
};
}