depot/third_party/nixpkgs/pkgs/development/python-modules/wrapio/default.nix
Default email b6d97fd731 Project import generated by Copybara.
GitOrigin-RevId: be0b453d7c7eee2090962c9a83749b024ff9acf5
2020-12-25 14:55:36 +01:00

24 lines
509 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wrapio";
version = "0.3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-jGupLh+xzwil+VBtAjIG+ZYT+dy+QaZOTIfipTQeyWo";
};
doCheck = false;
pythonImportsCheck = [ "wrapio" ];
meta = with stdenv.lib; {
homepage = "https://github.com/Exahilosys/wrapio";
description = "Handling event-based streams";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}