mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
python310Packages.mongoquery: init at 1.4.2
This commit is contained in:
parent
652e92b806
commit
7b89c42e5a
33
pkgs/development/python-modules/mongoquery/default.nix
Normal file
33
pkgs/development/python-modules/mongoquery/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, isPy27
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mongoquery";
|
||||
version = "1.4.2";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "bd19fc465f0aa9feb3070f144fde41fc68cf28ea32dd3b7565f7df3ab6fc0ac2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"mongoquery"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A python implementation of mongodb queries";
|
||||
homepage = "https://github.com/kapouille/mongoquery";
|
||||
license = with licenses; [ unlicense ];
|
||||
maintainers = with maintainers; [ misuzu ];
|
||||
};
|
||||
}
|
@ -5886,6 +5886,8 @@ self: super: with self; {
|
||||
|
||||
mongoengine = callPackage ../development/python-modules/mongoengine { };
|
||||
|
||||
mongoquery = callPackage ../development/python-modules/mongoquery { };
|
||||
|
||||
monkeyhex = callPackage ../development/python-modules/monkeyhex { };
|
||||
|
||||
monosat = pkgs.monosat.python {
|
||||
|
Loading…
Reference in New Issue
Block a user