evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pysnooper / default.nix
blobf8ce981e1d38f22d2d4720a7cd54683e90309f5b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pysnooper";
11   version = "1.2.1";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchPypi {
17     inherit version;
18     pname = "PySnooper";
19     hash = "sha256-2DLd8myARAqUVrOmZNr/lX9zfnMTxAt2JQ69tczbajE=";
20   };
22   nativeCheckInputs = [ pytestCheckHook ];
24   pythonImportsCheck = [ "pysnooper" ];
26   meta = with lib; {
27     description = "Poor man's debugger for Python";
28     homepage = "https://github.com/cool-RR/PySnooper";
29     license = licenses.mit;
30     maintainers = with maintainers; [ seqizz ];
31   };