summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDesmond Orton <odesmond21@gmail.com>2021-06-02 22:20:56 -0500
committerGitHub <noreply@github.com>2021-06-02 22:20:56 -0500
commitb4e347d2efe70a8c9200630809a8ea4e89884f6e (patch)
tree0255f6ed39c7b980d210565518bc0fe62b9cfe88
parente1d578299e762d2c2e5ac09476c1edcdccc4ed0a (diff)
downloadspack-b4e347d2efe70a8c9200630809a8ea4e89884f6e.tar.gz
spack-b4e347d2efe70a8c9200630809a8ea4e89884f6e.tar.bz2
spack-b4e347d2efe70a8c9200630809a8ea4e89884f6e.tar.xz
spack-b4e347d2efe70a8c9200630809a8ea4e89884f6e.zip
New Package:py-cookies (#24084)
-rw-r--r--var/spack/repos/builtin/packages/py-cookies/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cookies/package.py b/var/spack/repos/builtin/packages/py-cookies/package.py
new file mode 100644
index 0000000000..9d64b5212d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-cookies/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyCookies(PythonPackage):
+ """Friendlier RFC 6265-compliant cookie parser/renderer"""
+
+ homepage = "https://github.com/sashahart/cookies"
+ pypi = "cookies/cookies-2.2.1.tar.gz"
+
+ maintainers = ['dorton21']
+
+ version('2.2.1', sha256='d6b698788cae4cfa4e62ef8643a9ca332b79bd96cb314294b864ae8d7eb3ee8e')
+
+ depends_on('py-setuptools', type='build')