mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-27 04:26:01 +00:00
29 lines
588 B
Nix
29 lines
588 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mongoquery";
|
|
version = "1.4.3";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|