1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "pysigset";
5 version = "0.3.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0ym44z3nwp8chfi7snmknkqnl2q9bghzv9p923r8w748i5hvyxx8";
10 };
11
12 meta = with stdenv.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}