serversyncstorage: move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
5b2484ab86
commit
d1e2159638
@@ -0,0 +1,38 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchgit
|
||||
, isPy27
|
||||
, testfixtures
|
||||
, unittest2
|
||||
, webtest
|
||||
, pyramid
|
||||
, sqlalchemy
|
||||
, simplejson
|
||||
, mozsvc
|
||||
, cornice
|
||||
, pyramid_hawkauth
|
||||
, pymysql
|
||||
, pymysqlsa
|
||||
, umemcache
|
||||
, WSGIProxy
|
||||
, requests
|
||||
, pybrowserid
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "serversyncstorage-${version}";
|
||||
version = "1.6.11";
|
||||
disabled = !isPy27;
|
||||
|
||||
src = fetchgit {
|
||||
url = https://github.com/mozilla-services/server-syncstorage.git;
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "197gj2jfs2c6nzs20j37kqxwi91wabavxnfm4rqmrjwhgqjwhnm0";
|
||||
};
|
||||
|
||||
buildInputs = [ testfixtures unittest2 webtest ];
|
||||
propagatedBuildInputs = [
|
||||
pyramid sqlalchemy simplejson mozsvc cornice pyramid_hawkauth pymysql
|
||||
pymysqlsa umemcache WSGIProxy requests pybrowserid
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user