1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "pysigset";
5 version = "0.4.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "13ef98b058489ff572b6667c38970a544699895c0844cb3ac2494e3a59ac51e6";
10 };
11
12 meta = with lib; {
13 description = "Provides access to sigprocmask(2) and friends and convenience wrappers to python application developers wanting to SIG_BLOCK and SIG_UNBLOCK signals";
14 homepage = "https://github.com/ossobv/pysigset";
15 license = licenses.gpl3;
16 maintainers = with maintainers; [ dzabraev ];
17 };
18}