Merge pull request #167004 from r-ryantm/auto-update/python310Packages.pysnooper

python310Packages.pysnooper: 1.1.0 -> 1.1.1
This commit is contained in:
Fabian Affolter 2022-04-03 10:57:36 +02:00 committed by GitHub
commit f056f4b9bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,25 +1,29 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytest , pytestCheckHook
, isPy27 , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.1.0";
pname = "pysnooper"; pname = "pysnooper";
version = "1.1.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit version; inherit version;
pname = "PySnooper"; pname = "PySnooper";
sha256 = "0fa932ad396d2bac089d4b1f94f0ce49cde4140ee64ddd24a4065fadea10fcc9"; hash = "sha256-0X3JHMoVk8ECMNzkXkax0/8PiRDww46UHt9roSYLOCA=";
}; };
# test dependency python-toolbox fails with py27
doCheck = !isPy27;
checkInputs = [ checkInputs = [
pytest pytestCheckHook
];
pythonImportsCheck = [
"pysnooper"
]; ];
meta = with lib; { meta = with lib; {