depot/third_party/nixpkgs/pkgs/development/python-modules/greenlet/default.nix
Default email 410b979fe2 Project import generated by Copybara.
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
2023-03-24 01:07:29 +01:00

37 lines
776 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
, objgraph
, psutil
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "greenlet";
version = "2.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-58jcE699sJe+1koFHS3Unp8K9JXCaZXACp7oQmkNNMA=";
};
nativeCheckInputs = [
objgraph
psutil
pytestCheckHook
];
doCheck = false; # installed tests need to be executed, not sure how to accomplish that
meta = with lib; {
homepage = "https://github.com/python-greenlet/greenlet";
description = "Module for lightweight in-process concurrent programming";
license = with licenses; [
psfl # src/greenlet/slp_platformselect.h & files in src/greenlet/platform/ directory
mit
];
};
}