rfc6555: init at 0.0.0
This commit is contained in:
parent
becf5adaeb
commit
4f2a3aabff
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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user