nixpkgs/pkgs/development/python-modules/mozsvc/default.nix
2021-01-25 18:31:47 +01:00

30 lines
705 B
Nix

{ lib
, 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 lib; {
homepage = "https://github.com/mozilla-services/mozservices";
description = "Various utilities for Mozilla apps";
license = licenses.mpl20;
maintainers = with maintainers; [ nadrieril ];
};
}