summary refs log tree commit diff
path: root/pkgs/development/python-modules/mozsvc/default.nix
blob: a7b3984b912ef938a6bda59c04f12b6b2823c157 (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
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, pyramid
, simplejson
, konfig
}:

buildPythonPackage rec {
  pname = "mozsvc";
  version = "0.10";

  src = fetchFromGitHub {
    owner = "mozilla-services";
    repo = "mozservices";
    rev = version;
    sha256 = "0a0558g8j55pd1nnhnnf3k377jv6cah8lxb24v98rq8kxr5960cg";
  };

  doCheck = false; # too many dependencies and conflicting versions; I (nadrieril) gave up
  propagatedBuildInputs = [ pyramid simplejson konfig ];

  meta = with stdenv.lib; {
    homepage = https://github.com/mozilla-services/mozservices;
    description = "Various utilities for Mozilla apps";
    license = licenses.mpl20;
    maintainers = with maintainers; [ nadrieril ];
  };
}