depot/third_party/nixpkgs/pkgs/development/python-modules/wrapio/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
499 B
Nix

{ lib
, 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 lib; {
homepage = "https://github.com/Exahilosys/wrapio";
description = "Handling event-based streams";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}