summary refs log tree commit diff
path: root/pkgs/development/python-modules/anyjson
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 14:23:41 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 14:23:41 +0200
commit1ea27eb720a27faa23020d9a92cce0e22b5a9a11 (patch)
tree93ad44c9b3ec56178bcb21357c51c66cb7c31bc7 /pkgs/development/python-modules/anyjson
parent88208439ea08ff908a7a09ed08dc18a2ad7ee03c (diff)
downloadnixpkgs-1ea27eb720a27faa23020d9a92cce0e22b5a9a11.tar
nixpkgs-1ea27eb720a27faa23020d9a92cce0e22b5a9a11.tar.gz
nixpkgs-1ea27eb720a27faa23020d9a92cce0e22b5a9a11.tar.bz2
nixpkgs-1ea27eb720a27faa23020d9a92cce0e22b5a9a11.tar.lz
nixpkgs-1ea27eb720a27faa23020d9a92cce0e22b5a9a11.tar.xz
nixpkgs-1ea27eb720a27faa23020d9a92cce0e22b5a9a11.tar.zst
nixpkgs-1ea27eb720a27faa23020d9a92cce0e22b5a9a11.zip
python.pkgs.anyjson: update meta
Diffstat (limited to 'pkgs/development/python-modules/anyjson')
-rw-r--r--pkgs/development/python-modules/anyjson/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/anyjson/default.nix b/pkgs/development/python-modules/anyjson/default.nix
index 6db4bbdc314..65476b47f8f 100644
--- a/pkgs/development/python-modules/anyjson/default.nix
+++ b/pkgs/development/python-modules/anyjson/default.nix
@@ -1,4 +1,4 @@
-{ buildPythonPackage, fetchPypi, isPy3k, nose }:
+{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }:
 
 buildPythonPackage rec {
   pname = "anyjson";
@@ -14,8 +14,9 @@ buildPythonPackage rec {
 
   buildInputs = [ nose ];
 
-  meta = {
-    homepage = https://pypi.python.org/pypi/anyjson/;
+  meta = with lib; {
+    homepage = https://bitbucket.org/runeh/anyjson/;
     description = "Wrapper that selects the best available JSON implementation";
+    license = licenses.bsd2;
   };
 }