2020-09-25 04:45:31 +00:00
|
|
|
{ lib, isPy3k, pythonOlder, fetchPypi, buildPythonPackage
|
|
|
|
, pytest
|
2021-07-24 12:14:16 +00:00
|
|
|
, pytest-cov
|
2020-09-25 04:45:31 +00:00
|
|
|
, sybil
|
|
|
|
, typing-extensions
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "atpublic";
|
2021-06-28 23:13:55 +00:00
|
|
|
version = "2.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-28 23:13:55 +00:00
|
|
|
sha256 = "d6b9167fc3e09a2de2d2adcfc9a1b48d84eab70753c97de3800362e1703e3367";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
|
|
|
|
typing-extensions
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
checkInputs = [
|
2021-07-24 12:14:16 +00:00
|
|
|
pytest pytest-cov sybil
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
2020-12-07 07:45:13 +00:00
|
|
|
pytest
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|