tokenserver: move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
c8b6e1fa3c
commit
0c139e2186
36
pkgs/development/python-modules/tokenserver/default.nix
Normal file
36
pkgs/development/python-modules/tokenserver/default.nix
Normal file
@@ -0,0 +1,36 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchgit
|
||||
, testfixtures
|
||||
, cornice
|
||||
, mozsvc
|
||||
, pybrowserid
|
||||
, tokenlib
|
||||
, pymysql
|
||||
, umemcache
|
||||
, hawkauthlib
|
||||
, alembic
|
||||
, pymysqlsa
|
||||
, paste
|
||||
, boto
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "tokenserver-${version}";
|
||||
version = "1.2.27";
|
||||
|
||||
src = fetchgit {
|
||||
url = https://github.com/mozilla-services/tokenserver.git;
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "0il3bgjld495g9gxvvrm56kpan5swaizzg216qz3zxmb6w9ly3fm";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
buildInputs = [ testfixtures ];
|
||||
propagatedBuildInputs = [ cornice mozsvc pybrowserid tokenlib
|
||||
pymysql umemcache hawkauthlib alembic pymysqlsa paste boto ];
|
||||
|
||||
meta = {
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user