1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 18:46:32 +03:00
nixpkgs/pkgs/development/python-modules/pysigset/default.nix

19 lines
562 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2017-12-31 20:40:03 +03:00
buildPythonPackage rec {
pname = "pysigset";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "0ym44z3nwp8chfi7snmknkqnl2q9bghzv9p923r8w748i5hvyxx8";
};
meta = with lib; {
2017-12-31 20:40:03 +03:00
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";
2017-12-31 20:40:03 +03:00
license = licenses.gpl3;
maintainers = with maintainers; [ dzabraev ];
};
}