pythonPackages.wrapio: init at 0.3.8

This commit is contained in:
Stefan Frijters 2020-12-08 16:51:15 +01:00
parent da32a988ef
commit 21f615785c
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ 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 ];
};
}

View file

@ -7801,6 +7801,8 @@ in {
wptserve = callPackage ../development/python-modules/wptserve { };
wrapio = callPackage ../development/python-modules/wrapio { };
wrapt = callPackage ../development/python-modules/wrapt { };
wrf-python = callPackage ../development/python-modules/wrf-python { };