Loading pkgs/development/python-modules/curio-compat/default.nix 0 → 100644 +38 −0 Original line number Diff line number Diff line { buildPythonPackage, fetchFromGitHub, lib, pytestCheckHook, setuptools, }: buildPythonPackage rec { pname = "curio-compat"; version = "1.6.7"; pyproject = true; src = fetchFromGitHub { owner = "klen"; repo = "curio"; rev = "refs/tags/${version}"; hash = "sha256-Crd9r4Icwga85wvtXaePbE56R192o+FXU9Zn+Lc7trI="; }; build-system = [ setuptools ]; pythonImportsCheck = [ "curio" ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # contacts google.com "test_ssl_outgoing" ]; meta = { description = "Coroutine-based library for concurrent systems programming"; homepage = "https://github.com/klen/curio"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ dotlambda ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2719,6 +2719,8 @@ self: super: with self; { curio = callPackage ../development/python-modules/curio { }; curio-compat = callPackage ../development/python-modules/curio-compat { }; curlify = callPackage ../development/python-modules/curlify { }; curl-cffi = callPackage ../development/python-modules/curl-cffi { }; Loading Loading
pkgs/development/python-modules/curio-compat/default.nix 0 → 100644 +38 −0 Original line number Diff line number Diff line { buildPythonPackage, fetchFromGitHub, lib, pytestCheckHook, setuptools, }: buildPythonPackage rec { pname = "curio-compat"; version = "1.6.7"; pyproject = true; src = fetchFromGitHub { owner = "klen"; repo = "curio"; rev = "refs/tags/${version}"; hash = "sha256-Crd9r4Icwga85wvtXaePbE56R192o+FXU9Zn+Lc7trI="; }; build-system = [ setuptools ]; pythonImportsCheck = [ "curio" ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # contacts google.com "test_ssl_outgoing" ]; meta = { description = "Coroutine-based library for concurrent systems programming"; homepage = "https://github.com/klen/curio"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ dotlambda ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2719,6 +2719,8 @@ self: super: with self; { curio = callPackage ../development/python-modules/curio { }; curio-compat = callPackage ../development/python-modules/curio-compat { }; curlify = callPackage ../development/python-modules/curlify { }; curl-cffi = callPackage ../development/python-modules/curl-cffi { }; Loading