My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/iowait/default.nix

16 lines
370 B

{ buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "iowait";
version = "0.2";
src = fetchPypi {
inherit pname version;
sha256 = "16djvxd9sxm7cr57clhqkyrq3xvdzgwj803sy5hwyb62hkmw46xb";
};
meta = {
description = "Platform-independent module for I/O completion events";
homepage = "https://launchpad.net/python-iowait";
};
}