about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-08-01 15:23:27 -0700
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-08-03 07:52:00 +0200
commitaf70ce28731393dfd1151d7109689ada4708033e (patch)
treeff70af8b674abef3cc7e4ad5f6e0394df4f8c297
parent53328909da75752522c55f8d94c6553d740f9729 (diff)
downloadnixlib-af70ce28731393dfd1151d7109689ada4708033e.tar
nixlib-af70ce28731393dfd1151d7109689ada4708033e.tar.gz
nixlib-af70ce28731393dfd1151d7109689ada4708033e.tar.bz2
nixlib-af70ce28731393dfd1151d7109689ada4708033e.tar.lz
nixlib-af70ce28731393dfd1151d7109689ada4708033e.tar.xz
nixlib-af70ce28731393dfd1151d7109689ada4708033e.tar.zst
nixlib-af70ce28731393dfd1151d7109689ada4708033e.zip
pythonPackages.simplejson: 3.16.0 -> 3.16.1
-rw-r--r--pkgs/development/python-modules/simplejson/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/simplejson/default.nix b/pkgs/development/python-modules/simplejson/default.nix
index 9e80830f4380..abd4854c73fd 100644
--- a/pkgs/development/python-modules/simplejson/default.nix
+++ b/pkgs/development/python-modules/simplejson/default.nix
@@ -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.