mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
3efdf81259
Diff: https://github.com/mitogen-hq/mitogen/compare/refs/tags/v0.3.12...v0.3.13 Changelog: https://github.com/mitogen-hq/mitogen/blob/v0.3.13/docs/changelog.rst
38 lines
868 B
Nix
38 lines
868 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mitogen";
|
|
version = "0.3.13";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mitogen-hq";
|
|
repo = "mitogen";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-tQz79OVhUWrmsV05l8ScPAUVecrT55fFn74zpjVxBmg=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
# Tests require network access and Docker support
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "mitogen" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python Library for writing distributed self-replicating programs";
|
|
homepage = "https://github.com/mitogen-hq/mitogen";
|
|
changelog = "https://github.com/mitogen-hq/mitogen/blob/v${version}/docs/changelog.rst";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|