depot/third_party/nixpkgs/pkgs/development/python-modules/daiquiri/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

41 lines
750 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, python-json-logger
, setuptools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "daiquiri";
version = "3.2.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-P8rvN2/WgIi5I5E3R6t+4S2Lf7Kvf4xfIOWYCZfp6DU=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
python-json-logger
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "daiquiri" ];
meta = with lib; {
description = "Library to configure Python logging easily";
homepage = "https://github.com/Mergifyio/daiquiri";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}