blob: 85dbc04339e666495d9dec655967f8bb6ba1cbd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "safeio";
version = "1.2";
format = "setuptools";
src = fetchPypi {
pname = "safeIO";
inherit version;
sha256 = "d480a6dab01a390ebc24c12d6b774ad00cef3db5348ad07d8bd11d272a808cd3";
};
pythonImportsCheck = [ "safeIO" ];
meta = {
description = "Safely make I/O operations to files in Python even from multiple threads";
homepage = "https://github.com/Animenosekai/safeIO";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|