rfc6555: init at 0.0.0

This commit is contained in:
Danielle Lancashire 2019-09-02 13:07:38 +02:00
parent becf5adaeb
commit 4f2a3aabff
No known key found for this signature in database
GPG key ID: 8D65584EF3DDF91B
2 changed files with 26 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -4658,6 +4658,8 @@ in {
inherit (pkgs) pkgconfig; # use normal pkgconfig, not the python package
};
rfc6555 = callPackage ../development/python-modules/rfc6555 { };
qdarkstyle = callPackage ../development/python-modules/qdarkstyle { };
quamash = callPackage ../development/python-modules/quamash { };