python.pkgs.tokenserver: 1.2.27 -> 1.3.1
This commit is contained in:
@@ -1,32 +1,35 @@
|
|||||||
{ buildPythonPackage
|
{ lib, buildPythonPackage, fetchFromGitHub
|
||||||
, fetchgit
|
, alembic, boto, cornice, hawkauthlib, mozsvc, paste, pybrowserid, pyfxa
|
||||||
, testfixtures
|
, pymysql, pymysqlsa, sqlalchemy, testfixtures, tokenlib, umemcache
|
||||||
, cornice
|
, mock, nose, unittest2, webtest
|
||||||
, mozsvc
|
|
||||||
, pybrowserid
|
|
||||||
, tokenlib
|
|
||||||
, pymysql
|
|
||||||
, umemcache
|
|
||||||
, hawkauthlib
|
|
||||||
, alembic
|
|
||||||
, pymysqlsa
|
|
||||||
, paste
|
|
||||||
, boto
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tokenserver";
|
pname = "tokenserver";
|
||||||
version = "1.2.27";
|
version = "1.3.1";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/mozilla-services/tokenserver.git;
|
owner = "mozilla-services";
|
||||||
rev = "refs/tags/${version}";
|
repo = pname;
|
||||||
sha256 = "0il3bgjld495g9gxvvrm56kpan5swaizzg216qz3zxmb6w9ly3fm";
|
rev = version;
|
||||||
|
sha256 = "04z0r8xzrmhvh04y8ggdz9gs8qa8lv3qr7kasf6lm63fixsfgrlp";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = false;
|
propagatedBuildInputs = [
|
||||||
checkInputs = [ testfixtures ];
|
alembic boto cornice hawkauthlib mozsvc paste pybrowserid pyfxa
|
||||||
propagatedBuildInputs = [ cornice mozsvc pybrowserid tokenlib
|
pymysql pymysqlsa sqlalchemy testfixtures tokenlib umemcache
|
||||||
pymysql umemcache hawkauthlib alembic pymysqlsa paste boto ];
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
mock nose unittest2 webtest
|
||||||
|
];
|
||||||
|
|
||||||
|
# Requires virtualenv, MySQL, ...
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The Mozilla Token Server";
|
||||||
|
homepage = https://github.com/mozilla-services/tokenserver;
|
||||||
|
license = licenses.mpl20;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user