pythonPackages.iowait: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
8958b5132e
commit
760af870e9
16
pkgs/development/python-modules/iowait/default.nix
Normal file
16
pkgs/development/python-modules/iowait/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ stdenv, 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user