blob: 01a1985031df7e505787c934733e8e5daa66378d (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
six,
isPy27,
}:
buildPythonPackage rec {
pname = "mongoquery";
version = "1.4.3";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-6QH4buWvfvbtovLCb0vSz+g4DYHxeLfjYH27zc7pcjk=";
};
propagatedBuildInputs = [ six ];
pythonImportsCheck = [ "mongoquery" ];
meta = {
description = "Python implementation of mongodb queries";
homepage = "https://github.com/kapouille/mongoquery";
license = with lib.licenses; [ unlicense ];
maintainers = with lib.maintainers; [ misuzu ];
};
}
|