python310Packages.safeio: init at 1.2
This commit is contained in:
committed by
Martin Weinelt
parent
12f5ad8c11
commit
4f705210ad
24
pkgs/development/python-modules/safeio/default.nix
Normal file
24
pkgs/development/python-modules/safeio/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "safeio";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "safeIO";
|
||||
inherit version;
|
||||
sha256 = "d480a6dab01a390ebc24c12d6b774ad00cef3db5348ad07d8bd11d272a808cd3";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "safeIO" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Safely make I/O operations to files in Python even from multiple threads";
|
||||
homepage = "https://github.com/Animenosekai/safeIO";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -9483,6 +9483,8 @@ in {
|
||||
|
||||
safe = callPackage ../development/python-modules/safe { };
|
||||
|
||||
safeio = callPackage ../development/python-modules/safeio { };
|
||||
|
||||
safety = callPackage ../development/python-modules/safety { };
|
||||
|
||||
sagemaker = callPackage ../development/python-modules/sagemaker { };
|
||||
|
||||
Reference in New Issue
Block a user