summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysigset/default.nix
blob: 4e1b87a1f1b0dd9168c6dcd28b5e9e1d09a72085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "pysigset";
  version = "0.3.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ym44z3nwp8chfi7snmknkqnl2q9bghzv9p923r8w748i5hvyxx8";
  };

  meta = with stdenv.lib; {
    description = "Provides access to sigprocmask(2) and friends and convenience wrappers to python application developers wanting to SIG_BLOCK and SIG_UNBLOCK signals";
    homepage = "https://github.com/ossobv/pysigset";
    license = licenses.gpl3;
    maintainers = with maintainers; [ dzabraev ];
  };
}