Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / asgi-logger / default.nix
blobfb79236d784cc13350813a73818e49ed483b32c8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , poetry-core
5 , asgiref
6 }:
8 buildPythonPackage rec {
9   pname = "asgi-logger";
10   version = "0.1.0";
11   format = "pyproject";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-son1ML9J0UMgJCpWdYD/yK0FO6VmfuzifSWpeCLToKo=";
16   };
18   nativeBuildInputs = [
19     poetry-core
20   ];
21   propagatedBuildInputs = [
22     asgiref
23   ];
25   # tests are not in the pypi release, and there are no tags/release corresponding to the pypi releases in the github
26   doCheck = false;
27   pythonImportsCheck = [
28     "asgi_logger"
29   ];
31   meta = with lib; {
32     description = "Access logger for ASGI servers";
33     homepage = "https://github.com/Kludex/asgi-logger";
34     license = licenses.mit;
35     maintainers = teams.wdz.members;
36   };