Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pysnooper / default.nix
blob9cebc9d7bc7a20d848cfc74d974ac0e014cb47bd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "pysnooper";
10   version = "1.2.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.8";
15   src = fetchPypi {
16     inherit version;
17     pname = "PySnooper";
18     hash = "sha256-gQZp4WKiUKBm2GYuVzrbxa93DpN8W1V48ou3NV0chZs=";
19   };
21   nativeCheckInputs = [
22     pytestCheckHook
23   ];
25   pythonImportsCheck = [
26     "pysnooper"
27   ];
29   meta = with lib; {
30     description = "A poor man's debugger for Python";
31     homepage = "https://github.com/cool-RR/PySnooper";
32     license = licenses.mit;
33     maintainers = with maintainers; [ seqizz ];
34   };