aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/atpublic/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/development/python-modules/atpublic/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/atpublic/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/atpublic/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/atpublic/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/atpublic/default.nix
new file mode 100644
index 000000000000..021d8e8b3077
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/atpublic/default.nix
@@ -0,0 +1,46 @@
+{ lib, isPy3k, pythonOlder, fetchPypi, buildPythonPackage
+, pytest
+, pytestcov
+, sybil
+, typing-extensions
+}:
+
+buildPythonPackage rec {
+ pname = "atpublic";
+ version = "2.0";
+ disabled = !isPy3k;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "ebeb62b71a5c683a84c1b16bbf415708af5a46841b142b85ac3a22ec2d7613b0";
+ };
+
+ propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
+ typing-extensions
+ ];
+
+ checkInputs = [
+ pytest pytestcov sybil
+ ];
+
+ 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 ];
+ };
+}