pysnooper: 0.3.0 -> 0.4.1

This commit is contained in:
Gürkan Gür 2020-05-21 14:00:22 +02:00
parent 28357868f8
commit 06af79c680

View File

@ -1,26 +1,24 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, python-toolbox
, pytest , pytest
, isPy27 , isPy27
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.3.0"; version = "0.4.1";
pname = "pysnooper"; pname = "pysnooper";
src = fetchPypi { src = fetchPypi {
inherit version; inherit version;
pname = "PySnooper"; pname = "PySnooper";
sha256 = "14vcxrzfmfhsmdck1cb56a6lbfga15qfhlkap9mh47fgspcq8xkx"; sha256 = "1xngly13x3ylwwcdml2ns8skpxip2myzavp3b9ff2dpqaalf0hdl";
}; };
# test dependency python-toolbox fails with py27 # test dependency python-toolbox fails with py27
doCheck = !isPy27; doCheck = !isPy27;
checkInputs = [ checkInputs = [
python-toolbox
pytest pytest
]; ];