Merge pull request #206571 from fabaff/logging-journald-bump

python310Packages.logging-journald: 0.6.2 -> 0.6.4
This commit is contained in:
Fabian Affolter 2022-12-18 10:09:31 +01:00 committed by GitHub
commit d02dc5dac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "logging-journald";
version = "0.6.2";
format = "setuptools";
version = "0.6.4";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-U6kqAvMSyLDbThc6wAN/ri0vmt/vAxgFFZT65Csbpss=";
src = fetchFromGitHub {
owner = "mosquito";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-g8oDFuqTBVutS7Uq7JCN+SXYL7UEQ+7G2nxzndjKAh8=";
};
nativeBuildInputs = [
poetry-core
];
# Circular dependency with aiomisc
doCheck = false;