2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2020-12-25 13:55:36 +00:00
|
|
|
, buildPythonPackage
|
2021-08-18 13:19:15 +00:00
|
|
|
, pythonOlder
|
2020-12-25 13:55:36 +00:00
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "wrapio";
|
2021-08-18 13:19:15 +00:00
|
|
|
version = "2.0.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2021-08-18 13:19:15 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.5";
|
2020-12-25 13:55:36 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-CUocIbdZ/tJQCxAHzhFpB267ynlXf8Mu+thcRRc0yeg=";
|
2020-12-25 13:55:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "wrapio" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-12-25 13:55:36 +00:00
|
|
|
description = "Handling event-based streams";
|
2022-11-27 09:42:12 +00:00
|
|
|
homepage = "https://github.com/Exahilosys/wrapio";
|
|
|
|
changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}";
|
2020-12-25 13:55:36 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ sfrijters ];
|
|
|
|
};
|
|
|
|
}
|