Merge pull request #88510 from seqizz/g_pysnoopdate2

pysnooper: 0.3.0 -> 0.4.1
This commit is contained in:
Mario Rodas 2020-05-23 00:04:48 -05:00 committed by GitHub
commit 51b6e74f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

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
]; ];