pythonPackages.serversyncstorage: 1.6.11 -> 1.6.14

This commit is contained in:
TG ⊗ Θ
2019-01-30 15:58:58 +01:00
committed by Nadrieril
parent c1a071dd49
commit ab3d099d30
@@ -1,5 +1,6 @@
{ buildPythonPackage { stdenv
, fetchgit , buildPythonPackage
, fetchFromGitHub
, isPy27 , isPy27
, testfixtures , testfixtures
, unittest2 , unittest2
@@ -20,13 +21,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "serversyncstorage"; pname = "serversyncstorage";
version = "1.6.11"; version = "1.6.14";
disabled = !isPy27; disabled = !isPy27;
src = fetchgit { src = fetchFromGitHub {
url = https://github.com/mozilla-services/server-syncstorage.git; owner = "mozilla-services";
rev = "refs/tags/${version}"; repo = "server-syncstorage";
sha256 = "197gj2jfs2c6nzs20j37kqxwi91wabavxnfm4rqmrjwhgqjwhnm0"; rev = version;
sha256 = "08xclxj38rav8yay9cijiavv35jbyf6a9jzr24vgcna8pjjnbbmh";
}; };
checkInputs = [ testfixtures unittest2 webtest ]; checkInputs = [ testfixtures unittest2 webtest ];
@@ -35,7 +37,10 @@ buildPythonPackage rec {
pymysqlsa umemcache WSGIProxy requests pybrowserid pymysqlsa umemcache WSGIProxy requests pybrowserid
]; ];
meta = { meta = with stdenv.lib; {
broken = true; # 2018-11-04 description = "The SyncServer server software, as used by Firefox Sync";
homepage = https://github.com/mozilla-services/server-syncstorage;
license = licenses.mpl20;
maintainers = with maintainers; [ nadrieril ];
}; };
} }