tokenserver: move to python-modules

This commit is contained in:
Nadrieril
2017-12-05 22:28:58 +00:00
committed by Frederik Rietdijk
parent c8b6e1fa3c
commit 0c139e2186
2 changed files with 38 additions and 20 deletions

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