pysigset: init at 0.3.2

This commit is contained in:
Maxim Dzabraev 2017-12-31 20:40:03 +03:00
parent 548a14a7b7
commit b7681eddba
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -23240,6 +23240,8 @@ EOF
ephem = callPackage ../development/python-modules/ephem { };
voluptuous = callPackage ../development/python-modules/voluptuous { };
pysigset = callPackage ../development/python-modules/pysigset { };
});
in fix' (extends overrides packages)