mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 09:13:56 +00:00
23 lines
445 B
Nix
23 lines
445 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iowait";
|
|
version = "0.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "16djvxd9sxm7cr57clhqkyrq3xvdzgwj803sy5hwyb62hkmw46xb";
|
|
};
|
|
|
|
meta = {
|
|
description = "Platform-independent module for I/O completion events";
|
|
homepage = "https://launchpad.net/python-iowait";
|
|
license = lib.licenses.lgpl3Only;
|
|
};
|
|
}
|