about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorDanielle Lancashire <dani@builds.terrible.systems>2019-09-02 13:07:38 +0200
committerDanielle Lancashire <dani@builds.terrible.systems>2019-09-02 15:44:54 +0200
commit4f2a3aabff33e4a7dd1f35b4fcd906236073f20b (patch)
tree684d7f1f82e708ef67c32b16ffffc954d42f2405 /pkgs/development/python-modules
parentbecf5adaebeb25e6379fc9f0d44f855494f7c696 (diff)
downloadnixlib-4f2a3aabff33e4a7dd1f35b4fcd906236073f20b.tar
nixlib-4f2a3aabff33e4a7dd1f35b4fcd906236073f20b.tar.gz
nixlib-4f2a3aabff33e4a7dd1f35b4fcd906236073f20b.tar.bz2
nixlib-4f2a3aabff33e4a7dd1f35b4fcd906236073f20b.tar.lz
nixlib-4f2a3aabff33e4a7dd1f35b4fcd906236073f20b.tar.xz
nixlib-4f2a3aabff33e4a7dd1f35b4fcd906236073f20b.tar.zst
nixlib-4f2a3aabff33e4a7dd1f35b4fcd906236073f20b.zip
rfc6555: init at 0.0.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/rfc6555/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rfc6555/default.nix b/pkgs/development/python-modules/rfc6555/default.nix
new file mode 100644
index 000000000000..636427cf7139
--- /dev/null
+++ b/pkgs/development/python-modules/rfc6555/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi, pythonPackages }:
+
+buildPythonPackage rec {
+  pname = "rfc6555";
+  version = "0.0.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "05sjrd6jc0sdvx0z7d3llk82rx366jlmc7ijam0nalsv66hbn70r";
+  };
+
+  propagatedBuildInputs = with pythonPackages; [ selectors2 ];
+
+  # tests are disabled as rfc6555's 'non-network' tests still require a
+  # functional DNS stack to pass.
+  doCheck = false;
+
+  meta = {
+    description = "Python implementation of the Happy Eyeballs Algorithm";
+    homepage = "https://pypi.org/project/rfc6555";
+    license = stdenv.lib.licenses.asl20;
+    maintainers = with stdenv.lib.maintainers; [ endocrimes ];
+  };
+}