pythonPackages.simplejson: 3.16.0 -> 3.16.1

This commit is contained in:
Jonathan Ringer 2019-08-01 15:23:27 -07:00 committed by Frederik Rietdijk
parent 4908aaf3c9
commit 65bba1f622

View File

@ -1,18 +1,20 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, stdenv
, pytest
}:
buildPythonPackage rec {
pname = "simplejson";
version = "3.16.0";
version = "3.16.1";
doCheck = !stdenv.isDarwin;
src = fetchPypi {
inherit pname version;
sha256 = "b1f329139ba647a9548aa05fb95d046b4a677643070dc2afc05fa2e975d09ca5";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1v80dbk3ajhgz7q5cc8k0dd22zj9rrlz838c90l5g3w1i280r1iq";
};
# Package does not need pytest, but its a bit easier debugging.