Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / aioprocessing / default.nix
blob04963f1d09b17aed155dd46dfbabd915e868e1ac
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonAtLeast
5 }:
7 buildPythonPackage rec {
8   pname = "aioprocessing";
9   version = "1.1.0";
10   disabled = !(pythonAtLeast "3.4");
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "4603c86ff3fea673d4c643ad3adc519988cd778771b75079bc3be9e5ed4c5b66";
15   };
17   # Tests aren't included in pypi package
18   doCheck = false;
20   meta = {
21     description = "A library that integrates the multiprocessing module with asyncio";
22     homepage = "https://github.com/dano/aioprocessing";
23     license = lib.licenses.bsd2;
24     maintainers = with lib.maintainers; [ uskudnik ];
25   };