3
0
Fork 0
forked from mirrors/nixpkgs

python.pkgs.anyjson: update meta

This commit is contained in:
Robert Schütz 2018-08-03 14:23:41 +02:00
parent 88208439ea
commit 1ea27eb720

View file

@ -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;
};
}