1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 pname = "mitogen";
8 version = "0.3.0";
9
10 src = fetchFromGitHub {
11 owner = "mitogen-hq";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-SotxlsJDIeFd4BN9C7afyyybET5ST2yaoWVEyT/lr48=";
15 };
16
17 # Tests require network access and Docker support
18 doCheck = false;
19
20 pythonImportsCheck = [ "mitogen" ];
21
22 meta = with lib; {
23 description = "Python Library for writing distributed self-replicating programs";
24 homepage = "https://github.com/mitogen-hq/mitogen";
25 license = licenses.bsd3;
26 maintainers = with maintainers; [ fab ];
27 };
28}