nixpkgs/pkgs/development/python-modules/wrapio/default.nix
2021-02-17 21:23:51 +01:00

25 lines
500 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wrapio";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-JWcPsqZy1wM6/mbU3H0W3EkpLg0wrEUUg3pT/QrL+rE=";
};
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 ];
};
}