nixpkgs/pkgs/development/python-modules/wrapio/default.nix

28 lines
547 B
Nix
Raw Normal View History

{ lib
2020-12-08 15:51:15 +00:00
, buildPythonPackage
2021-08-14 09:16:35 +00:00
, pythonOlder
2020-12-08 15:51:15 +00:00
, fetchPypi
}:
buildPythonPackage rec {
pname = "wrapio";
2021-08-14 09:16:35 +00:00
version = "2.0.0";
disabled = pythonOlder "3.5";
2020-12-08 15:51:15 +00:00
src = fetchPypi {
inherit pname version;
2021-08-14 09:16:35 +00:00
sha256 = "sha256-CUocIbdZ/tJQCxAHzhFpB267ynlXf8Mu+thcRRc0yeg=";
2020-12-08 15:51:15 +00:00
};
doCheck = false;
pythonImportsCheck = [ "wrapio" ];
meta = with lib; {
2020-12-08 15:51:15 +00:00
homepage = "https://github.com/Exahilosys/wrapio";
description = "Handling event-based streams";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}