rfc6555: init at 0.0.0
This commit is contained in:
24
pkgs/development/python-modules/rfc6555/default.nix
Normal file
24
pkgs/development/python-modules/rfc6555/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user