fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
700 B
Nix
33 lines
700 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wrapio";
|
|
version = "2.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-CUocIbdZ/tJQCxAHzhFpB267ynlXf8Mu+thcRRc0yeg=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "wrapio" ];
|
|
|
|
meta = with lib; {
|
|
description = "Handling event-based streams";
|
|
homepage = "https://github.com/Exahilosys/wrapio";
|
|
changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sfrijters ];
|
|
};
|
|
}
|