2019-01-21 16:44:25 +00:00
|
|
|
{ lib, isPy3k, fetchPypi, buildPythonPackage
|
|
|
|
, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "atpublic";
|
2020-08-16 18:30:50 +01:00
|
|
|
version = "2.0";
|
2019-01-21 16:44:25 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:30:50 +01:00
|
|
|
sha256 = "ebeb62b71a5c683a84c1b16bbf415708af5a46841b142b85ac3a22ec2d7613b0";
|
2019-01-21 16:44:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest --pyargs public
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://public.readthedocs.io/en/latest/";
|
2019-01-21 16:44:25 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|