Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / safeio / default.nix
blobd0dd6c4ca5e1671e68761b5de7b21064092f4d97
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "safeio";
8   version = "1.2";
9   format = "setuptools";
11   src = fetchPypi {
12     pname = "safeIO";
13     inherit version;
14     sha256 = "d480a6dab01a390ebc24c12d6b774ad00cef3db5348ad07d8bd11d272a808cd3";
15   };
17   pythonImportsCheck = [ "safeIO" ];
19   meta = with lib; {
20     description = "Safely make I/O operations to files in Python even from multiple threads";
21     homepage = "https://github.com/Animenosekai/safeIO";
22     license = licenses.mit;
23     maintainers = with maintainers; [ ];
24   };