nixpkgs/pkgs/development/python-modules/mozsvc/default.nix

30 lines
705 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2018-12-25 17:50:41 +00:00
, fetchFromGitHub
, pyramid
, simplejson
, konfig
}:
buildPythonPackage rec {
pname = "mozsvc";
2018-12-25 17:50:41 +00:00
version = "0.10";
2018-12-25 17:50:41 +00:00
src = fetchFromGitHub {
owner = "mozilla-services";
repo = "mozservices";
rev = version;
sha256 = "0a0558g8j55pd1nnhnnf3k377jv6cah8lxb24v98rq8kxr5960cg";
};
2018-12-25 17:50:41 +00:00
doCheck = false; # too many dependencies and conflicting versions; I (nadrieril) gave up
propagatedBuildInputs = [ pyramid simplejson konfig ];
meta = with lib; {
homepage = "https://github.com/mozilla-services/mozservices";
description = "Various utilities for Mozilla apps";
license = licenses.mpl20;
2018-12-25 17:50:41 +00:00
maintainers = with maintainers; [ nadrieril ];
};
}