forked from mirrors/nixpkgs
pythonPackages.wrapio: init at 0.3.8
This commit is contained in:
parent
da32a988ef
commit
21f615785c
24
pkgs/development/python-modules/wrapio/default.nix
Normal file
24
pkgs/development/python-modules/wrapio/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue