nixpkgs/pkgs/development/python-modules/safeio/default.nix
2022-07-21 22:35:28 +02:00

25 lines
544 B
Nix

{ 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; [ ];
};
}