python3Packages.atpublic: init at 1.0

This commit is contained in:
Edmund Wu 2019-01-21 11:44:25 -05:00
parent ee2161c5e8
commit 4adaa3c313
No known key found for this signature in database
GPG Key ID: 76AA3F9F2BD3E3A0
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib, isPy3k, fetchPypi, buildPythonPackage
, pytest }:
buildPythonPackage rec {
pname = "atpublic";
version = "1.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0i3sbxkdlbb4560rrlmwwd5y4ps7k73lp4d8wnmd7ag9k426gjkx";
};
checkInputs = [
pytest
];
checkPhase = ''
pytest --pyargs public
'';
meta = with lib; {
homepage = https://public.readthedocs.io/en/latest/;
description = "A decorator and function which populates a module's __all__ and globals";
longDescription = ''
This is a very simple decorator and function which populates a module's
__all__ and optionally the module globals.
This provides both a pure-Python implementation and a C implementation. It is
proposed that the C implementation be added to builtins_ for Python 3.6.
This proposal seems to have been rejected, for more information see
https://bugs.python.org/issue26632.
'';
license = licenses.asl20;
maintainers = with maintainers; [ eadwu ];
};
}

View File

@ -1346,6 +1346,8 @@ in {
asyncssh = callPackage ../development/python-modules/asyncssh { };
atpublic = callPackage ../development/python-modules/atpublic { };
python-fontconfig = callPackage ../development/python-modules/python-fontconfig { };
funcsigs = callPackage ../development/python-modules/funcsigs { };