about summary refs log tree commit diff
path: root/pkgs/development/python-modules/serversyncstorage/default.nix
blob: 1d9274610dade0d5dc3c9d7bd8887bfca49169b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ 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
  ];

  meta = {
    broken = true; # 2018-11-04
  };
}