Files
nixpkgs/pkgs/development/python-modules/mongoquery/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
622 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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 = with lib; {
description = "Python implementation of mongodb queries";
homepage = "https://github.com/kapouille/mongoquery";
license = with licenses; [ unlicense ];
maintainers = with maintainers; [ misuzu ];
};
}