about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-07-26 23:09:22 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-07-26 23:09:22 +0300
commit3877501f9da61025f21abf22c40e6a6a81d04afd (patch)
tree2e53b770fc8d551f4e9c1c4dff1cedcb11cf9cc1 /pkgs/development/python-modules
parentf59e6f4037a741d41bee04e9b1ee684aae956d86 (diff)
parent62dca7c9ab08ee5cc2043d6d374013b8041a3f21 (diff)
downloadnixlib-3877501f9da61025f21abf22c40e6a6a81d04afd.tar
nixlib-3877501f9da61025f21abf22c40e6a6a81d04afd.tar.gz
nixlib-3877501f9da61025f21abf22c40e6a6a81d04afd.tar.bz2
nixlib-3877501f9da61025f21abf22c40e6a6a81d04afd.tar.lz
nixlib-3877501f9da61025f21abf22c40e6a6a81d04afd.tar.xz
nixlib-3877501f9da61025f21abf22c40e6a6a81d04afd.tar.zst
nixlib-3877501f9da61025f21abf22c40e6a6a81d04afd.zip
Merge remote-tracking branch 'upstream/master' into staging
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/rfc7464/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rfc7464/default.nix b/pkgs/development/python-modules/rfc7464/default.nix
new file mode 100644
index 000000000000..60a5308d718a
--- /dev/null
+++ b/pkgs/development/python-modules/rfc7464/default.nix
@@ -0,0 +1,19 @@
+{ buildPythonPackage, fetchPypi, lib }:
+
+buildPythonPackage rec {
+  pname = "rfc7464";
+  version = "17.7.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1hcn6h38qplfcmq392cs58r01k16k202bqyap4br02376pr4ik7a";
+    extension = "zip";
+  };
+
+  meta = with lib; {
+    homepage = https://github.com/moshez/rfc7464;
+    description = "RFC 7464 is a proposed standard for streaming JSON documents.";
+    license = [ licenses.mit ];
+    maintainers = with maintainers; [ shlevy ];
+  };
+}