Merge pull request #301879 from r-ryantm/auto-update/python312Packages.mitogen

python312Packages.mitogen: 0.3.5 -> 0.3.6
This commit is contained in:
Fabian Affolter 2024-04-05 23:45:57 +02:00 committed by GitHub
commit 05a30e71ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 13 deletions

View File

@ -1,13 +1,14 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "mitogen";
version = "0.3.5";
version = "0.3.6";
pyproject = true;
disabled = pythonOlder "3.7";
@ -16,19 +17,15 @@ buildPythonPackage rec {
owner = "mitogen-hq";
repo = "mitogen";
rev = "refs/tags/v${version}";
hash = "sha256-EDybx25eqJiMeoyB/lkuuofGTS8Q0ZjtB8HaKuGaKhk=";
hash = "sha256-zQTto4SGPvQIXPAcTQx8FA+n/5RcpqKKn0UqlFM2yqI=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
# Tests require network access and Docker support
doCheck = false;
pythonImportsCheck = [
"mitogen"
];
pythonImportsCheck = [ "mitogen" ];
meta = with lib; {
description = "Python Library for writing distributed self-replicating programs";