blob: d0dd6c4ca5e1671e68761b5de7b21064092f4d97 (
plain) (
blame)
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
|
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "safeio";
version = "1.2";
format = "setuptools";
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; [ ];
};
}
|