Files
nixpkgs/pkgs/development/python-modules/tokenserver/default.nix
T

36 lines
910 B
Nix
Raw Normal View History

2018-08-07 10:43:07 +02:00
{ lib, buildPythonPackage, fetchFromGitHub
, alembic, boto, cornice, hawkauthlib, mozsvc, paste, pybrowserid, pyfxa
, pymysql, pymysqlsa, sqlalchemy, testfixtures, tokenlib, umemcache
, mock, nose, unittest2, webtest
2017-12-05 22:28:58 +00:00
}:
buildPythonPackage rec {
2018-06-23 15:27:58 +02:00
pname = "tokenserver";
2018-08-07 10:43:07 +02:00
version = "1.3.1";
2017-12-05 22:28:58 +00:00
2018-08-07 10:43:07 +02:00
src = fetchFromGitHub {
owner = "mozilla-services";
repo = pname;
rev = version;
sha256 = "04z0r8xzrmhvh04y8ggdz9gs8qa8lv3qr7kasf6lm63fixsfgrlp";
2017-12-05 22:28:58 +00:00
};
2018-08-07 10:43:07 +02:00
propagatedBuildInputs = [
alembic boto cornice hawkauthlib mozsvc paste pybrowserid pyfxa
pymysql pymysqlsa sqlalchemy testfixtures tokenlib umemcache
];
2017-12-05 22:28:58 +00:00
2018-08-07 10:43:07 +02:00
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;
};
2017-12-05 22:28:58 +00:00
}