nixpkgs/pkgs/development/python-modules/atpublic/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

2020-08-17 04:01:00 +00:00
{ lib, isPy3k, pythonOlder, fetchPypi, buildPythonPackage
, pytest
, pytestcov
, sybil
, typing-extensions
}:
2019-01-21 16:44:25 +00:00
buildPythonPackage rec {
pname = "atpublic";
version = "2.1.3";
2019-01-21 16:44:25 +00:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "e0b274759bfbcb6eeb7c7b44a7a46391990a43ac77aa55359b075765b54d9f5d";
2019-01-21 16:44:25 +00:00
};
2020-08-17 04:01:00 +00:00
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
typing-extensions
];
2019-01-21 16:44:25 +00:00
checkInputs = [
2020-08-17 04:01:00 +00:00
pytest pytestcov sybil
2019-01-21 16:44:25 +00:00
];
checkPhase = ''
2020-11-29 17:40:51 +00:00
pytest
2019-01-21 16:44:25 +00:00
'';
meta = with lib; {
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 ];
};
}