python311Packages.nameko: init at 2.4.1
This commit is contained in:
parent
e9d1d73449
commit
7c95720fd6
71
pkgs/development/python-modules/nameko/default.nix
Normal file
71
pkgs/development/python-modules/nameko/default.nix
Normal file
@ -0,0 +1,71 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
|
||||
# install_requires
|
||||
, dnspython
|
||||
, eventlet
|
||||
, kombu
|
||||
, mock
|
||||
, packaging
|
||||
, path
|
||||
, pyyaml
|
||||
, requests
|
||||
, setuptools
|
||||
, six
|
||||
, werkzeug
|
||||
, wrapt
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nameko";
|
||||
version = "2.14.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-J1NXi7Tca5KAGuozTSkwuX37dEhucF7daRmDBqlGjIg=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace "path.py" "path"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dnspython
|
||||
eventlet
|
||||
kombu
|
||||
mock
|
||||
packaging
|
||||
path
|
||||
pyyaml
|
||||
requests
|
||||
setuptools
|
||||
six
|
||||
werkzeug
|
||||
wrapt
|
||||
];
|
||||
|
||||
# tests depend on RabbitMQ being installed - https://nameko.readthedocs.io/en/stable/contributing.html#running-the-tests
|
||||
# and most of the tests are network based
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"nameko"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A microservices framework that lets service developers concentrate on application logic and encourages testability";
|
||||
homepage = "https://www.nameko.io/";
|
||||
changelog = "https://github.com/nameko/nameko/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ siddharthdhakane ];
|
||||
};
|
||||
}
|
@ -8152,6 +8152,8 @@ self: super: with self; {
|
||||
|
||||
name-that-hash = callPackage ../development/python-modules/name-that-hash { };
|
||||
|
||||
nameko = callPackage ../development/python-modules/nameko { };
|
||||
|
||||
nampa = callPackage ../development/python-modules/nampa { };
|
||||
|
||||
nanoid = callPackage ../development/python-modules/nanoid { };
|
||||
|
Loading…
Reference in New Issue
Block a user