13 buildPythonPackage rec {
14 pname = "mongoengine";
18 src = fetchFromGitHub {
19 owner = "MongoEngine";
22 sha256 = "14n9rl8w3i1fq96f3jzsg7gy331d7fmrapva6m38ih53rnf38bdf";
25 propagatedBuildInputs = [
38 substituteInPlace setup.py \
39 --replace "coverage==4.2" "coverage"
42 # tests require mongodb running in background
46 description = "MongoEngine is a Python Object-Document Mapper for working with MongoDB";
47 homepage = "http://mongoengine.org/";
48 license = licenses.mit;
49 maintainers = [ maintainers.costrouc ];